/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

/* Personnalisation de la barre de navigation */
.navbar, .navbar-default, .navbar-light.bg-light {
    background-color: #00729D !important; /* Couleur de fond du header */
    font-family: 'Lato', sans-serif; /* Utilisation de la police Lato */
}

/* Couleur du texte des menus dans la barre de navigation */
.navbar .navbar-nav .nav-link, .navbar .navbar-brand {
    color: white !important; /* Force la couleur du texte à blanc */
}

/* Personnalisation des boutons */
.btn {
    background-color: #FD6848; /* Couleur de fond des boutons */
    color: white; /* Couleur du texte des boutons */
    border: none; /* Enlève la bordure si nécessaire */
    font-family: 'Lato', sans-serif; /* Utilisation de la police Lato */
}

.btn:hover {
    background-color: #16b84e; /* Couleur au survol des boutons */
    color: white; /* Couleur du texte des boutons */
}

/* Personnalisation des boutons de genre après sélection */
.ls-button-radio:checked + .ls-button-label {
    background-color: #16b84e !important; /* Couleur de fond après sélection */
    color: white !important; /* Couleur du texte après sélection */
}

/* Maintenir la couleur au survol même après la sélection */
.ls-button-radio:checked + .ls-button-label:hover {
    background-color: #16b84e !important; /* Couleur de fond au survol après sélection */
}


/* Définit la police et la couleur pour tout le texte */
body {
    font-family: 'Lato', sans-serif; /* Utilisation de la police Lato */
    color: #1F3D55; /* Couleur du texte */
}

.texte-autre .othertext-label {
    color: #FD6848; /* Couleur du texte personnalisée */
    font-weight: bold; /* Par exemple, mettre en gras pour mieux distinguer */
}

.texte-autre-agrumes label.othertext-label {
    color: #FD6848 !important;
    font-weight: bold;
}

