/* Стили для пользователей */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.user-card {
    background: #1e2444;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.user-card:hover {
    transform: translateY(-5px);
}

.user-card.online {
    border: 2px solid #00d68f;
    animation: userPulse 2s infinite;
}

.user-card.success {
    border: 2px solid #00d68f;
    background: linear-gradient(135deg, #1e2444, rgba(0, 214, 143, 0.1));
}

.user-card.danger {
    border: 2px solid #ff3b5c;
    background: linear-gradient(135deg, #1e2444, rgba(255, 59, 92, 0.1));
}

.user-card.warning {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #1e2444, rgba(245, 158, 11, 0.1));
}

.user-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.user-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0aec0;
    font-size: 0.9rem;
}

@keyframes userPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 214, 143, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 214, 143, 0);
    }
}