@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #f7f8fa;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Soft shadow */
    transition: transform 0.2s ease;
}

.card:active {
    transform: scale(0.995);
}

/* KPI Card Style */
.kpi-card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.kpi-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.kpi-sub {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Status Badges */
.status-badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
}

.status-pending {
    background: #fee2e2;
    color: #ef4444;
}

.status-progress {
    background: #dbeafe;
    color: #3b82f6;
}

.status-done {
    background: #dcfce7;
    color: #22c55e;
}

/* Custom Scrollbar for horizontal scrolling elements */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}