/* สไตล์สำหรับสถิติผู้ใช้งาน */
.user-stats-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.user-stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.stats-number.animate {
    transform: scale(1.1);
}

.stats-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.online-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.border-right {
    border-right: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    .border-right {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
}