@import url('dashboard-common.css');

/* Overview Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(14px, 2vw, 24px);
    margin-bottom: clamp(18px, 3vw, 36px);
}

.stat-card {
    background: #fff;
    padding: clamp(18px, 2.5vw, 28px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s;
}

.stat-card:hover { transform: translateY(-2px); }

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-card.blue .stat-icon { background: #e0e7ff; color: #4f46e5; }
.stat-card.green .stat-icon { background: #dcfce7; color: #16a34a; }
.stat-card.purple .stat-icon { background: #f3e8ff; color: #9333ea; }

.stat-title { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.stat-details h2 { font-size: 26px; font-weight: 800; color: var(--text-main); margin: 2px 0; }
.stat-trend { font-size: 11px; font-weight: 700; }
.stat-trend.positive { color: #16a34a; }
.stat-trend.neutral { color: #64748b; }
