/* ===========================
   Global Typography
   =========================== */

:root {
    --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 0.95rem;
    --text-lg: 1.05rem;
    --text-xl: 1.25rem;

    --heading-sm: 1.15rem;
    --heading-md: 1.35rem;
    --heading-lg: 1.6rem;
}

html, body {
    font-family: var(--font-base);
    font-size: 15px;
    color: #212529;
    background-color: #f5f6f8;
}

/* ===========================
   Navbar
   =========================== */

.navbar-brand {
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ===========================
   Cards
   =========================== */

.card {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.card-header {
    background: #fff;
    font-weight: 600;
    font-size: var(--text-md);
    padding: 0.75rem 1rem;
}

.card-body {
    font-size: var(--text-sm);
}

/* ===========================
   Stat cards (dashboard numbers)
   =========================== */

.card h6 {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.card h2 {
    font-size: var(--heading-lg);
    font-weight: 700;
    margin: 0;
}

/* ===========================
   Tables
   =========================== */

.table {
    font-size: var(--text-sm);
}

.table th {
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b7280;
}

.table td {
    vertical-align: middle;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: 6px;
}

/* ===========================
   Headings
   =========================== */

h1 { font-size: var(--heading-lg); font-weight: 700; }
h2 { font-size: var(--heading-md); font-weight: 700; }
h3 { font-size: var(--heading-sm); font-weight: 600; }
h4 { font-size: var(--heading-sm); font-weight: 600; }

/* ===========================
   Charts
   =========================== */

canvas {
    max-height: 320px;
}

/* ===========================
   Media gallery (screenshots/webcam)
   =========================== */

#mediaGallery img {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}
