/**
 * Styles pour le layout du site web Restaurant Tycoon
 */

body {
    font-family: 'Nunito', sans-serif;
}

.auth-page {
    background-color: #f8f9fa;
}

/* Styles de la barre de navigation */
.navbar {
    padding: 0.8rem 1rem;
}

.navbar-brand {
    font-weight: 600;
}

/* Styles du contenu principal */
.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Styles des alertes et notifications */
.alert {
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

/* Styles des liens */
a {
    color: #3490dc;
    text-decoration: none;
}

a:hover {
    color: #1d68a7;
    text-decoration: underline;
}

/* Styles des boutons */
.btn-primary {
    background-color: #3490dc;
    border-color: #3490dc;
}

.btn-primary:hover {
    background-color: #1d68a7;
    border-color: #1d68a7;
}

/* Styles du footer */
footer {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    border-top: 1px solid #dee2e6;
}
