/* --- STRUCTURE SIDEBAR DARK --- */
.sidebar-list-dark {
    background-color: #282b2d;
    border: 1px solid #444;
    margin-bottom: 20px;
    border-radius: 2px; /* Un peu plus doux */
    overflow: hidden;
}

/* En-tête (Header) */
.sidebar-header {
    font-family: 'Oswald', sans-serif;
    background-color: #212529;
    color: #fff;
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 4px solid #edc13b; /* Or UFC */
    border-bottom: 1px solid #444;
    margin-bottom: 0;
}


.sidebar-header-blue {
    font-family: 'Oswald', sans-serif;
    background-color: #212529;
    color: #fff;
    padding: 12px 15px;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-left: 4px solid #007bff; 
    border-bottom: 0;
}

/* Items de liste */
.sidebar-item-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #3d4043;
    color: #eee;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

/* Lien cliquable avec flèche au survol */
a.sidebar-item-dark {
    cursor: pointer;
}

a.sidebar-item-dark::before {
    content: '\f0da'; /* Font Awesome Arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    opacity: 0;
    color: #edc13b;
    transition: all 0.3s ease;
}

a.sidebar-item-dark:hover {
    background-color: #3d4043;
    padding-left: 25px !important; /* Décalage */
    color: #edc13b !important;
}

a.sidebar-item-dark:hover::before {
    opacity: 1;
    left: 10px;
}

/* Bleu au survol pour les autres organisations */
.sidebar-list-blue a.sidebar-item-dark:hover {
    color: #007bff !important;
}
.sidebar-list-blue a.sidebar-item-dark:hover::before {
    color: #007bff !important;
}
.sidebar-list-blue a.sidebar-item-dark:hover .text-muted {
    color: #007bff !important;
}
/* --- DATES & EVENTS --- */
.event-date-box {
    min-width: 45px;
    text-align: center;
    line-height: 1;
    border-right: 1px solid #3d4043;
    margin-right: 12px;
    padding-right: 10px;
    color: #007bff;
}

.event-date-box.ufc-date {
    color: #edc13b;
}

/* --- FIGHTER WIDGET --- */
.fighter-item-box {
    padding: 0;
    border-bottom: 1px solid #3d4043;
}

.fighter-link-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    color: #eee;
}

.fighter-photo-circle {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #444;
    flex-shrink: 0;
    margin-left: 10px;
	transition: all 0.4s ease-in-out;
}

.img-fighter-menu {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fighter-label-name {
    font-weight: bold;
    display: block;
    font-size: 0.95rem;
}

.fighter-link-sidebar:hover {
    background-color: #3d4043;
    color: #edc13b !important;
}
.fighter-link-sidebar:hover .text-muted {
    color: #edc13b !important;
}
.fighter-link-sidebar:hover .fighter-photo-circle {
    border-color: #edc13b;
	transform: scale(1.1)
}

/* --- STATS --- */
.stat-value {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 1rem;
}

/* --- ANIMATION BREAKING NEWS --- */
@keyframes pulse-red {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.pulse-icon {
    animation: pulse-red 1.5s infinite;
}


/* Ne touche QUE les textes gris DANS la barre latérale sombre */
.sidebar-list-dark .text-muted {
    color: #adb5bd !important; /* Gris clair */
}

/* Optionnel : Si tu veux aussi que ça s'applique au survol (pour qu'il devienne or ou blanc) */
.sidebar-list-dark a:hover .text-muted {
    color: #edc13b !important; /* Devient Or au survol */	
}

/*On supprime la ligne du bas qui bouge pendant l'animation */
#breakingCarousel .sidebar-item-dark {
    border-bottom: none !important; 
}