/* ─── Global ──────────────────────────────────────────────────────────────── */
:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
    --font-main: 'Inter', system-ui, sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: #f8fafc;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #3b82f6 100%);
}

/* ─── Navbar ──────────────────────────────────────────────────────────────── */
.navbar { border-bottom: 1px solid rgba(255,255,255,0.1); }

/* ─── Course Cards ────────────────────────────────────────────────────────── */
.course-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px !important;
}
.course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12) !important;
}

/* ─── Stat Cards ──────────────────────────────────────────────────────────── */
.stat-card {
    border-radius: 12px !important;
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }

/* ─── Tables ──────────────────────────────────────────────────────────────── */
.table th {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

/* ─── Badges ──────────────────────────────────────────────────────────────── */
.badge { font-weight: 500; }

/* ─── Center badge icon ───────────────────────────────────────────────────── */
.center-badge {
    width: 44px; height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid #374151; }

/* ─── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
