/* ===============================
   RADIO COUVIN — STYLE LISTE VOTES
   =============================== */

.rcl-votes-live-wrapper {
    padding: 10px 0;
    font-family: "Inter", "Montserrat", sans-serif;
    color: #fff;
}

.rcl-votes-live-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ligne d’un vote */
.rcl-vote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 15px;
    margin: 4px 0;

    background: rgba(0,0,0,0.35);
    border-radius: 8px;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border: 1px solid rgba(255,255,255,0.05);

    transition: background 0.25s ease, transform 0.2s ease;
}

.rcl-vote-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* Titre + artiste */
.rcl-vote-meta strong {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rcl-vote-meta small {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Score à droite */
.rcl-vote-score {
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Détails UP / DOWN / TOTAL */

.rcl-up {
    color: #31ff6a;
    text-shadow: 0 0 6px rgba(49,255,106,0.6);
}

.rcl-down {
    color: #ff4b4b;
    text-shadow: 0 0 6px rgba(255,75,75,0.6);
}

.rcl-total {
    color: #80c2ff;
    text-shadow: 0 0 6px rgba(128,194,255,0.6);
}