/* ── Global ─────────────────────────────────────────────────────────────── */
body {
    font-size: 15px;
    background: #f4f6f9;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar-brand {
    font-size: 1.2rem;
    letter-spacing: .02em;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.card {
    border-radius: .6rem;
}
.card-header {
    background: rgba(0,0,0,.04);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: .65rem 1rem;
}

/* ── Table fixes ────────────────────────────────────────────────────────── */
.table th,
.table td {
    vertical-align: middle;
}

/* Sticky header inside scrollable table wrapper */
.sticky-header thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #212529;
    color: #fff;
}

/* ── Chart canvas ───────────────────────────────────────────────────────── */
#tempChart {
    width: 100% !important;
}

/* ── Responsive: tablets & mobiles ─────────────────────────────────────── */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    .container-fluid {
        padding-left: .75rem;
        padding-right: .75rem;
    }
    .table-responsive {
        font-size: 13px;
    }
    div[style*="height:320px"] {
        height: 220px !important;
    }
}

/* ── Dashboard active measurement card ──────────────────────────────────── */
.border-success {
    border-width: 2px !important;
}

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge {
    font-size: .8em;
}
