/* Styles personnalisés pour la barre de navigation */

/* Correction de la visibilité en mode sombre */
[data-bs-theme=dark] body {
    background-color: #1a1d20;
}

[data-bs-theme=dark] .header-static {
    background-color: #1a1d20 !important;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

[data-bs-theme=dark] main {
    background-color: #1a1d20;
}

[data-bs-theme=dark] .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-bs-theme=dark] .navbar-nav .nav-link:hover,
[data-bs-theme=dark] .navbar-nav .nav-link.active {
    color: #fff !important;
}

[data-bs-theme=dark] .navbar-nav .nav-link::after {
    background-color: #8a7bd4;
}

[data-bs-theme=dark] .navbar-nav .nav-link.text-dark {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-bs-theme=dark] .navbar-nav .nav-link.text-dark:hover,
[data-bs-theme=dark] .navbar-nav .nav-link.text-dark.active {
    color: #fff !important;
}

/* Animation de survol des liens de navigation */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #3c3487;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Couleur de survol des liens */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3c3487 !important;
}

/* Style du menu déroulant des catégories */
[data-bs-theme=dark] .dropdown-menu {
    background-color: #2b3035;
    border: 1px solid #3a4149;
}

[data-bs-theme=dark] .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
}

[data-bs-theme=dark] .dropdown-item:hover,
[data-bs-theme=dark] .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #3c3487;
}

/* Style du bouton de recherche */
.nav-search .nav-link {
    color: #3c3487;
    transition: all 0.2s ease;
}

.nav-search .nav-link:hover {
    transform: scale(1.1);
}

/* Style du menu utilisateur */
.dropdown-menu[aria-labelledby="profileDropdown"] {
    min-width: 16rem;
    padding: 0.75rem 0;
}

/* Styles spécifiques pour le mode sombre */
/* Style du sélecteur de thème */
.dark-mode-switch {
    background-color: #f8f9fa !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem !important;
    border-radius: 0.5rem !important;
}

.dark-mode-switch .text-muted {
    color: #6c757d !important;
    font-weight: 500;
    margin-right: 0.75rem !important;
}

.dark-mode-switch .btn {
    color: #495057 !important;
    background-color: #fff !important;
    border: 1px solid #dee2e6 !important;
    margin: 0 0.15rem !important;
    padding: 0.25rem 0.75rem !important;
    font-size: 0.75rem !important;
    border-radius: 0.25rem !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dark-mode-switch .btn:hover {
    color: #3c3487 !important;
    background-color: #f8f9fa !important;
    border-color: #d1d5db !important;
    transform: translateY(-1px);
}

.dark-mode-switch .btn.active {
    color: #fff !important;
    background-color: #3c3487 !important;
    border-color: #3c3487 !important;
    font-weight: 600 !important;
    box-shadow: 0 0 0 2px rgba(60, 52, 135, 0.25) !important;
}

/* Correction pour le bouton Light en mode clair */
[data-bs-theme=light] .dark-mode-switch .btn[data-bs-theme-value="light"].active {
    color: #fff !important;
    background-color: #3c3487 !important;
    border-color: #3c3487 !important;
}

[data-bs-theme=light] .dark-mode-switch .btn[data-bs-theme-value="light"] {
    color: #3c3487 !important;
    font-weight: 500;
}

[data-bs-theme=light] .dark-mode-switch .btn[data-bs-theme-value="light"]:not(.active):hover {
    background-color: #f1f1f1 !important;
    color: #2a2468 !important;
}

/* Styles pour les options d'achat */
.list-group-item.option-item {
    color: var(--bs-primary) !important;
}

[data-bs-theme=dark] .list-group-item.option-item {
    color: #fff !important;
}

/* Styles pour les cartes en mode sombre */
[data-bs-theme=dark] .card {
    background-color: #2b3035;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Styles pour la sidebar */
/* Mode clair */
.list-group-item {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9) !important;
    border: none;
    padding: 0.5rem 0;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.list-group-item i {
    color: rgba(255, 255, 255, 0.9) !important;
}

.list-group-item:hover {
    background-color: rgba(234, 92, 45, 0.1);
    color: #fff !important;
}

.list-group-item:hover i {
    color: #fff !important;
}

.list-group-item.active {
    background-color: #ea5c2d;
    color: #fff;
}

.list-group-item.text-danger {
    color: #dc3545 !important;
}

.list-group-item.bg-danger-soft-hover:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

/* Mode sombre */
[data-bs-theme=dark] .list-group-item {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .list-group-item:hover {
    background-color: rgba(234, 92, 45, 0.1);
    color: #fff;
}

[data-bs-theme=dark] .list-group-item.active {
    background-color: #ea5c2d;
    color: #fff;
    border-color: #ea5c2d;
}

[data-bs-theme=dark] .list-group-item.text-danger {
    color: #dc3545 !important;
}

[data-bs-theme=dark] .list-group-item.bg-danger-soft-hover:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

/* Styles pour les badges en mode sombre */
[data-bs-theme=dark] .badge {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

[data-bs-theme=dark] .badge.bg-primary {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

[data-bs-theme=dark] .card-body {
    color: rgba(255, 255, 255, 0.9);
}

[data-bs-theme=dark] .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme=dark] .card-title a {
    color: #fff !important;
}

[data-bs-theme=dark] .card-title a:hover {
    color: #8a7bd4 !important;
}

/* Icônes */
.dark-mode-switch .mode-switch {
    fill: #6c757d;
    margin-right: 0.25rem;
    vertical-align: -2px;
}

.dark-mode-switch .btn:hover .mode-switch,
.dark-mode-switch .btn.active .mode-switch {
    fill: currentColor;
}

/* Conteneur des boutons */
.dark-mode-switch > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

/* Style du sélecteur de thème en mode sombre */
[data-bs-theme=dark] .dark-mode-switch {
    background-color: #1e2226 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 0.5rem !important;
}

[data-bs-theme=dark] .dark-mode-switch .text-muted {
    color: #e9ecef !important;
    font-weight: 500;
    margin-right: 0.75rem !important;
}

[data-bs-theme=dark] .dark-mode-switch .btn {
    color: #e9ecef !important;
    background-color: #2c3034 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 0.15rem !important;
    padding: 0.25rem 0.75rem !important;
    font-size: 0.75rem !important;
    border-radius: 0.25rem !important;
    transition: all 0.2s ease !important;
}

[data-bs-theme=dark] .dark-mode-switch .btn:hover {
    color: #fff !important;
    background-color: #3c3487 !important;
    border-color: #3c3487 !important;
    transform: translateY(-1px);
}

[data-bs-theme=dark] .dark-mode-switch .btn.active {
    color: #fff !important;
    background-color: #3c3487 !important;
    border-color: #3c3487 !important;
    font-weight: 600 !important;
    box-shadow: 0 0 0 2px rgba(60, 52, 135, 0.5) !important;
}

/* Icônes SVG */
[data-bs-theme=dark] .dark-mode-switch .mode-switch {
    fill: #e9ecef;
    margin-right: 0.25rem;
    vertical-align: -2px;
}

[data-bs-theme=dark] .dark-mode-switch .btn:hover .mode-switch,
[data-bs-theme=dark] .dark-mode-switch .btn.active .mode-switch {
    fill: #fff;
}

/* Ajustement pour le conteneur des boutons */
[data-bs-theme=dark] .dark-mode-switch > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}
[data-bs-theme=dark] .navbar-toggler-animation span {
    background-color: #fff !important;
}

[data-bs-theme=dark] .nav-search .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-bs-theme=dark] .nav-search .nav-link:hover {
    color: #fff !important;
}

[data-bs-theme=dark] .navbar-brand .dark-mode-item {
    background-color: transparent !important;
}

[data-bs-theme=dark] .dropdown-toggle::after {
    border-top-color: rgba(255, 255, 255, 0.9) !important;
}

[data-bs-theme=dark] .navbar-nav .dropdown-menu {
    background-color: #2b3035;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-bs-theme=dark] .navbar-nav .dropdown-item:hover,
[data-bs-theme=dark] .navbar-nav .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

/* Animation du bouton de menu mobile */
.navbar-toggler {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(60, 52, 135, 0.25);
}

/* Style pour le sélecteur de thème */
.dark-mode-switch .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.dark-mode-switch .btn.active {
    color: #3c3487;
    font-weight: 500;
}

[data-bs-theme=dark] .dark-mode-switch .btn.active {
    color: #8a7bd4;
}

/* Ajustement pour les écrans mobiles */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 2rem;
    }
}

/* Animation de la barre de navigation */
.header-static {
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-sticky.sticky-top {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Styles pour la page des produits */

/* Section des filtres */
.filter-section h6.filter-title {
    color: #3c3487;
}

/* Labels des filtres */
.form-check-label {
    color: #3c3487;
}

/* Bouton de réinitialisation */
#reset-filters {
    color: #3c3487;
    border-color: #3c3487;
}
#reset-filters:hover {
    background-color: #3c3487;
    color: white;
}

/* Options de tri */
select[name="sort"] option {
    color: #3c3487;
}

/* Titre des résultats */
.mb-0.text-accent {
    color: #3c3487;
}

/* Badge de compteur */
.badge.bg-accent {
    background-color: #3c3487;
    color: white;
}

/* Titre de la section des filtres */
.card-header h5 {
    color: #3c3487;
}

/* Éléments du filtre en mode sombre */
[data-bs-theme=dark] .filter-section h6.filter-title,
[data-bs-theme=dark] .form-check-label,
[data-bs-theme=dark] .card-header h5,
[data-bs-theme=dark] .mb-0.text-accent,
[data-bs-theme=dark] select[name="sort"] option {
    color: #fff;
}

/* Éléments du filtre en mode sombre - État hover */
[data-bs-theme=dark] .form-check-label:hover,
[data-bs-theme=dark] select[name="sort"] option:hover {
    color: #ea5c2d;
}

/* Styles pour le slider de prix */
#price-range {
    margin: 1rem 0;
    height: 0.4em;
    background: #f5f5f5;
    border-radius: 0.2em;
    position: relative;
}

#price-range .ui-slider-handle {
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    background: #ea5c2d;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

#price-range .ui-slider-range {
    background: #ea5c2d;
    height: 100%;
    border-radius: 0.2em;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Styles pour les valeurs de prix */
#price-min,
#price-max {
    color: #3c3487;
    font-weight: 500;
}

/* Styles pour les valeurs de prix en mode sombre */
[data-bs-theme=dark] #price-min,
[data-bs-theme=dark] #price-max {
    color: #fff;
}

/* Styles pour le bandeau de paiement */
.breadcrumb-container {
    background-color: #3c3487 !important;
    color: white;
}

.breadcrumb-container h1 {
    color: white;
}

.breadcrumb-container .breadcrumb {
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    background-color: transparent;
}

.breadcrumb-container .breadcrumb-item {
    padding: 0 0.5rem;
    color: white;
}

.breadcrumb-container .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-container .breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-container .breadcrumb-item + .breadcrumb-item::before {
    color: #ea5c2d;
    content: "/";
    padding: 0 0.5rem;
}

.breadcrumb-container .breadcrumb-item.active {
    color: #ea5c2d !important;
    font-weight: 600;
}

/* Styles pour le breadcrumb */
.breadcrumb {
    padding: 0.75rem 1rem;
    margin-bottom: 0;
}

.breadcrumb-item {
    padding: 0 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    content: "/";
    padding: 0 0.5rem;
}

.breadcrumb-item.active {
    color: #ea5c2d !important;
    font-weight: 500;
}

/* Styles pour le formulaire en dark mode */
[data-bs-theme=dark] .bg-light-input {
    background-color: #3c3487;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

[data-bs-theme=dark] .bg-light-input .form-label,
[data-bs-theme=dark] .form-label,
[data-bs-theme=dark] label {
    color: white;
    font-weight: 500;
}

[data-bs-theme=dark] .bg-light-input .form-control,
[data-bs-theme=dark] .bg-light-input .form-select {
    background-color: #4a449a;
    border: 1px solid #5a54aa;
    color: white;
}

[data-bs-theme=dark] .bg-light-input .form-control:focus,
[data-bs-theme=dark] .bg-light-input .form-select:focus {
    background-color: #4a449a;
    border-color: #ea5c2d;
    box-shadow: 0 0 0 0.2rem rgba(234, 92, 45, 0.25);
}

[data-bs-theme=dark] .bg-light-input .form-control::placeholder,
[data-bs-theme=dark] .bg-light-input .form-select::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Styles pour la page de détail du produit */

/* Catégorie en haut du produit */
.bg-primary.text-white {
    background-color: #3c3487 !important;
}

/* Prix et boutons */
.btn-success {
    background-color: #3c3487;
    border-color: #3c3487;
    color: white;
}

.btn-success:hover {
    background-color: #2a2163;
    border-color: #2a2163;
}

/* Bouton de partage */
.btn-light {
    background-color: #3c3487;
    color: white;
}

.btn-light:hover {
    background-color: #2a2163;
    color: white;
}

/* Éléments à mettre en avant avec orange */
[data-bs-theme=dark] .btn-success,
[data-bs-theme=light] .btn-success {
    background-color: #ea5c2d;
    border-color: #ea5c2d;
    color: white;
}

[data-bs-theme=dark] .btn-success:hover,
[data-bs-theme=light] .btn-success:hover {
    background-color: #d44e1e;
    border-color: #d44e1e;
}

/* Carte de cours */
.card.border {
    border: 1px solid #3c3487;
}

.card-header {
    background-color: #3c3487;
    color: white;
}

/* Champs de saisie en mode sombre */
[data-bs-theme=dark] .form-control,
[data-bs-theme=dark] .form-select,
[data-bs-theme=dark] textarea,
[data-bs-theme=dark] .bg-light-input {
    background-color: #ffffff;
    border-color: #3c3487;
    color: #3c3487;
}

[data-bs-theme=dark] .form-control:focus,
[data-bs-theme=dark] .form-select:focus,
[data-bs-theme=dark] textarea:focus {
    background-color: #ffffff;
    border-color: #ea5c2d;
    box-shadow: 0 0 0 0.25rem rgba(234, 92, 45, 0.25);
}

/* Styles spécifiques pour les zones de texte */
[data-bs-theme=dark] .bg-light-input,
[data-bs-theme=dark] .bg-light {
    background-color: #ffffff !important;
    border: 1px solid #3c3487;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

[data-bs-theme=dark] .bg-light-input textarea,
[data-bs-theme=dark] .bg-light textarea {
    background-color: #ffffff !important;
    border: none;
    resize: vertical;
}

[data-bs-theme=dark] .bg-light-input textarea:focus,
[data-bs-theme=dark] .bg-light textarea:focus {
    outline: none;
    box-shadow: none;
}

/* Styles spécifiques pour le formulaire de commentaire */
[data-bs-theme=dark] .one.form-control {
    background-color: #ffffff !important;
    border-color: #3c3487;
    color: #3c3487;
    padding-right: 1rem;
}

[data-bs-theme=dark] .one.form-control:focus {
    background-color: #ffffff !important;
    border-color: #ea5c2d;
    box-shadow: 0 0 0 0.25rem rgba(234, 92, 45, 0.25);
    color: #3c3487;
}

/* Styles pour les commentaires en mode sombre */
[data-bs-theme=dark] .comment-item {
    border-color: #3c3487;
}

[data-bs-theme=dark] .comment-item .bg-light {
    background-color: #ffffff !important;
    border: 1px solid #3c3487;
}

[data-bs-theme=dark] .comment-item h6,
[data-bs-theme=dark] .comment-item p,
[data-bs-theme=dark] .comment-item small {
    color: #3c3487 !important;
}

[data-bs-theme=dark] .comment-item a {
    color: #3c3487 !important;
}

[data-bs-theme=dark] .comment-item a:hover {
    color: #2a2163 !important;
}

[data-bs-theme=dark] .comment-item .text-primary-hover {
    color: #3c3487 !important;
}

[data-bs-theme=dark] .comment-item .text-primary-hover:hover {
    color: #ea5c2d !important;
}

[data-bs-theme=dark] .comment-item .nav-divider {
    border-color: #3c3487;
}

/* Bouton de recherche */
.btn-accent {
    color: white !important;
}

/* Bouton de réinitialisation */
#reset-filters {
    color: white !important;
}

/* Styles pour le slider en mode sombre */
[data-bs-theme=dark] .ui-slider .ui-slider-handle,
[data-bs-theme=dark] .ui-slider .ui-slider-range,
[data-bs-theme=dark] .ui-slider .ui-widget-header {
    background: #ea5c2d;
    border: none;
}

/* Bouton de recherche */
.btn-accent {
    background-color: #3c3487;
    border-color: #3c3487;
    color: white;
}
.btn-accent:hover {
    background-color: #2a2163;
    border-color: #2a2163;
}

/* État checked des cases à cocher */
.form-check-input:checked {
    background-color: #3c3487;
    border-color: #3c3487;
}

/* État focus des cases à cocher */
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(60, 52, 135, 0.25);
}

/* État hover des options de tri */
select[name="sort"] option:hover {
    background-color: rgba(60, 52, 135, 0.1);
}

/* État focus des champs de recherche */
.form-control:focus {
    border-color: #3c3487;
    box-shadow: 0 0 0 0.25rem rgba(60, 52, 135, 0.25);
}

/* Éléments à mettre en avant avec orange */
[data-bs-theme=dark] .badge.bg-accent {
    background-color: #ea5c2d;
    color: white;
}

/* Admin Dashboard Styles */
/* Sidebar styles */
.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: #ff6b00 !important;
    background-color: rgba(255, 107, 0, 0.1);
}

.navbar-dark .nav-link.active i {
    color: #ff6b00;
}

#navbar-sidebar .nav-link {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

#collapsepage .nav-link {
    padding-left: 3rem;
}

.text-primary-hover .text-body:hover {
    color: #ff6b00 !important;
}

/* Active submenu styles */
#collapsepage.show {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

/* Admin Profile styles */
[data-bs-theme=light] .dropdown-menu .avatar-img {
    border: 2px solid #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

[data-bs-theme=light] .bg-danger-soft-hover:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

.avatar-sm:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Theme switcher styles */
.dark-mode-switch {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.dark-mode-switch .btn {
    color: #212529;
}

.dark-mode-switch .btn:hover,
.dark-mode-switch .btn.active {
    color: #ff6b00;
    background-color: rgba(255, 107, 0, 0.1);
}

[data-bs-theme=light] .badge.bg-accent {
    background-color: #ea5c2d;
    color: white;
}

[data-bs-theme=dark] .btn-accent {
    background-color: #ea5c2d;
    border-color: #ea5c2d;
    color: white;
}
[data-bs-theme=dark] .btn-accent:hover {
    background-color: #d44e1e;
    border-color: #d44e1e;
}

[data-bs-theme=light] .btn-accent {
    background-color: #ea5c2d;
    border-color: #ea5c2d;
    color: white;
}
[data-bs-theme=light] .btn-accent:hover {
    background-color: #d44e1e;
    border-color: #d44e1e;
}

/* État checked des cases à cocher en orange */
.form-check-input:checked {
    background-color: #ea5c2d;
    border-color: #ea5c2d;
}

/* État focus des champs avec orange */
.form-control:focus {
    border-color: #ea5c2d;
    box-shadow: 0 0 0 0.25rem rgba(234, 92, 45, 0.25);
}

[data-bs-theme=dark] .navbar-sticky.sticky-top {
    background-color: #1a1d20 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
