/* Adicione estilos personalizados aqui */
.dark-theme {
    background-color: #111;
    color: #fff;
}
body {
    background-color: #FAFAFA;
    color: #333333;
    font-family: Arial, sans-serif;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #4CAF50;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45A645;
}

button.secondary {
    background-color: #DDDDDD;
    color: #333333;
}

hr,
.divider {
    border-top: 1px solid #EEEEEE;
}

.icon {
    color: rgba(0, 0, 0, 0.7);
}

/* Estilo bÃ¡sico para os botÃµes flutuantes */
.fab {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 24px;
    transition: background-color 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#overlay {
    z-index: 1000; 
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    justify-content: center;
    align-items: center;
}

#mensagem-box {
    background: #fff; /* fundo branco */
    padding: 20px; /* espaÃ§o interno */
    border-radius: 10px; /* bordas arredondadas */
    text-align: center; /* centralizar texto */
    width: 80%; /* largura */
    height: auto;
    max-width: 400px; /* largura mÃ¡xima */
}

.mensagem {
    /*font-size: 20px;*/
    /*font-size: 2vw;*/
    color: #28a745;
    font-size: 1.25rem; 
    margin: 0; /* removendo margens padrÃ£o */
}

html {
    font-size: 16px; /* define o tamanho da fonte base */
}

.form-check {
    margin-top: 20px;
}


/* Posicionamento do segundo botÃ£o */
#goToLatestRecipes {
    top: 90px;
}

/* Cores especÃ­ficas para cada botÃ£o */
#toggleInstructions {
    background-color: #007bff;
}

#toggleInstructions:hover {
    background-color: #0056b3;
}

#goToLatestRecipes {
    background-color: #6c757d;
}

#goToLatestRecipes:hover {
    background-color: #545b62;
}

/* Estilo para os Ã­cones */
.fab i {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#instructionsModal .modal-body {
    color: black;
}

#instructionsModal .modal-title {
    color: black;
}

.share-buttons button {
    min-width: 150px; /* Ajuste conforme necessÃ¡rio */
}
/* style.css */
/* Estilos para o overlay de loading */
/*.loading-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.loading-overlay .spinner-border {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}*/

/* =========================================
   Layout Premium & Glassmorphism Updates
========================================= */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

.btn {
    transition: all 0.2s ease;
}

.btn:active {
    transform: scale(0.95);
}

.stars-rating i {
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
    transition: color 0.2s, transform 0.2s;
}

.stars-rating:hover i {
    transform: scale(1.1);
}

/* Forçar a cor do placeholder para branco/claro em inputs escuros */
.form-control.bg-dark::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

