/* EWsait/admin/static/css/modules/stats.css */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #3c616a;
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #9546c5;
    font-weight: 700;
}

.stat-card .value {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Адаптивность */
@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-card .value {
        font-size: 20px;
    }
}