/* 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;
}

*/
