/* Styles pour le compteur d'utilisateurs en ligne */
.users-online {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 12px 15px;
    background-color: rgba(20, 241, 149, 0.08);
    border-radius: 10px;
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.users-online:hover {
    background-color: rgba(20, 241, 149, 0.15);
    transform: translateY(-2px);
}

.users-online i {
    color: #14F195;
    margin-right: 10px;
    font-size: 16px;
}

.online-count {
    font-weight: bold;
    color: #14F195;
    margin-right: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.online-label {
    opacity: 0.7;
    font-size: 13px;
}

/* Animation de compteur qui change légèrement */
@keyframes countChange {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Script pour simuler des changements de nombre d'utilisateurs */
.count-changing {
    animation: countChange 0.5s ease;
}
