/* Réduire la taille du logo */
.navbar-brand img,
.custom-logo {
    max-height: 60px !important; /* Ajustez la valeur selon vos besoins */
    width: auto !important;
    height: auto !important;
}

/* Pour la version mobile */
@media (max-width: 768px) {
    .navbar-brand img,
    .custom-logo {
        max-height: 40px !important;
    }
}