/* Override: force fond blanc et texte sombre sur la navbar quand la couleur "blanc" est choisie */
.header-navbar.bg-white,
.header-navbar[data-navbar-color="white"] {
  background: #fff !important;
  background-color: #fff !important;
}

/* Texte et icônes en sombre pour lisibilité sur fond blanc */
.header-navbar.bg-white .navbar-nav .nav-item > .nav-link,
.header-navbar.bg-white .navbar-nav .nav-item > a,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item > .nav-link,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item > a {
  color: #5e5873 !important;
}
.header-navbar.bg-white .navbar-nav .nav-item .nav-link i,
.header-navbar.bg-white .navbar-nav .nav-item .nav-link svg,
.header-navbar.bg-white .navbar-nav .nav-item .nav-link span,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item .nav-link i,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item .nav-link svg,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item .nav-link span {
  color: #5e5873 !important;
}
.header-navbar.bg-white .navbar-brand,
.header-navbar.bg-white .brand-text,
.header-navbar[data-navbar-color="white"] .navbar-brand,
.header-navbar[data-navbar-color="white"] .brand-text {
  color: #5e5873 !important;
}
.header-navbar.bg-white .dropdown-toggle,
.header-navbar.bg-white .selected-language,
.header-navbar[data-navbar-color="white"] .dropdown-toggle,
.header-navbar[data-navbar-color="white"] .selected-language {
  color: #5e5873 !important;
}
.header-navbar.bg-white .search-input .form-control,
.header-navbar.bg-white .search-input .input,
.header-navbar[data-navbar-color="white"] .search-input .form-control,
.header-navbar[data-navbar-color="white"] .search-input .input {
  color: #5e5873 !important;
}
.header-navbar.bg-white .ficon,
.header-navbar[data-navbar-color="white"] .ficon {
  color: #5e5873 !important;
}
/* Conserver la couleur d’accent pour l’icône étoile (warning) */
.header-navbar.bg-white .ficon.text-warning,
.header-navbar[data-navbar-color="white"] .ficon.text-warning {
  color: #ff9f43 !important;
}

/* Badges (bulle de notification) : texte en blanc pour lisibilité sur fond rouge/coloré (spécificité élevée pour dépasser .nav-link span) */
.header-navbar.bg-white .navbar-nav .nav-item .nav-link .badge,
.header-navbar.bg-white .navbar-nav .nav-item .nav-link span.badge,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item .nav-link .badge,
.header-navbar[data-navbar-color="white"] .navbar-nav .nav-item .nav-link span.badge {
  color: #fff !important;
}
