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

:root {
    --primary: #1a3a6b;
    --primary-light: #2d5aa0;
    --primary-dark: #0f2044;
    --secondary: #f97316;
    --secondary-dark: #ea6a00;
    --accent: #0ea5e9;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
    --bg: #f1f5f9;
    --card: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --sidebar-width: 262px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

/* ─── SIDEBAR ────────────────────────────────────────────────── */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--primary-dark);
    overflow-y: auto;
    z-index: 1000;
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.sidebar-brand {
    padding: 18px 16px;
    background: rgba(0,0,0,.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-brand .brand-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
    margin-bottom: 8px;
}

.sidebar-brand .brand-name {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.sidebar-brand .brand-sub {
    color: rgba(255,255,255,.5);
    font-size: 10px;
    margin-top: 2px;
}

.sidebar-nav { padding: 8px 0; flex: 1; }

.nav-group-label {
    color: rgba(255,255,255,.3);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 18px 5px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-link:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
    border-left-color: rgba(249,115,22,.5);
}

.sidebar-link.active {
    color: #fff;
    background: rgba(255,255,255,.1);
    border-left-color: var(--secondary);
}

.sidebar-link i {
    width: 16px;
    text-align: center;
    font-size: 13px;
    flex-shrink: 0;
}

.sidebar-link .s-badge {
    margin-left: auto;
    background: var(--secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
}

.sidebar-footer {
    padding: 14px 16px;
    background: rgba(0,0,0,.2);
    flex-shrink: 0;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 12.5px;
}

.sidebar-user .u-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}

.sidebar-user .u-name { font-weight: 600; }
.sidebar-user .u-role { font-size: 10.5px; color: rgba(255,255,255,.4); }

/* ─── MAIN CONTENT ───────────────────────────────────────────── */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 500;
    flex-shrink: 0;
}

.topbar-left .page-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.topbar-left .page-subtitle {
    font-size: 11.5px;
    color: var(--muted);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tb-icon-btn {
    width: 36px; height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--muted);
    position: relative;
    transition: all .2s;
    text-decoration: none;
}

.tb-icon-btn:hover { background: var(--bg); color: var(--primary); }

.tb-icon-btn .notif-dot {
    position: absolute;
    top: 7px; right: 7px;
    width: 7px; height: 7px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid #fff;
}

.tb-avatar {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    cursor: pointer;
}

/* ─── PAGE CONTENT ───────────────────────────────────────────── */
.page-content { padding: 22px 24px; flex: 1; }

/* ─── STAT CARDS ─────────────────────────────────────────────── */
.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    border-radius: 0 14px 0 100%;
    opacity: .06;
}

.stat-card.blue::after { background: #1a3a6b; }
.stat-card.orange::after { background: #f97316; }
.stat-card.green::after { background: #22c55e; }
.stat-card.red::after { background: #ef4444; }
.stat-card.cyan::after { background: #06b6d4; }
.stat-card.purple::after { background: #8b5cf6; }

.stat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.09); }

.stat-card .s-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.s-icon.blue { background: #dbeafe; color: var(--primary); }
.s-icon.orange { background: #ffedd5; color: var(--secondary); }
.s-icon.green { background: #dcfce7; color: #16a34a; }
.s-icon.red { background: #fee2e2; color: #dc2626; }
.s-icon.cyan { background: #cffafe; color: #0891b2; }
.s-icon.purple { background: #ede9fe; color: #7c3aed; }

.stat-card .s-value {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
    margin-bottom: 4px;
}

.stat-card .s-label {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 500;
}

.stat-card .s-trend {
    font-size: 11.5px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.s-trend.up { color: #16a34a; }
.s-trend.down { color: #dc2626; }

/* ─── CARD ───────────────────────────────────────────────────── */
.card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.card-header-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header-title i {
    color: var(--secondary);
    font-size: 15px;
}

.card-body { padding: 20px; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary { background: var(--primary) !important; border-color: var(--primary) !important; font-size: 13px; font-weight: 600; }
.btn-primary:hover { background: var(--primary-light) !important; border-color: var(--primary-light) !important; }

.btn-orange { background: var(--secondary); border: none; color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all .2s; }
.btn-orange:hover { background: var(--secondary-dark); color: #fff; }

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.filter-bar .form-control,
.filter-bar .form-select {
    font-size: 13px;
    border-radius: 8px;
    border-color: var(--border);
    padding: 7px 12px;
    height: 38px;
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,58,107,.1);
}

/* ─── TABLE ──────────────────────────────────────────────────── */
.tbl-wrap { overflow-x: auto; }

table.admin-table {
    width: 100%;
    border-collapse: collapse;
}

table.admin-table thead th {
    background: #f8fafc;
    padding: 10px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

table.admin-table tbody td {
    padding: 11px 14px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    white-space: nowrap;
}

table.admin-table tbody tr:last-child td { border-bottom: none; }
table.admin-table tbody tr:hover { background: #fafbfd; }

/* ─── STATUS BADGES ──────────────────────────────────────────── */
.badge-status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.bs-pending  { background: #fef3c7; color: #92400e; }
.bs-approved { background: #dcfce7; color: #166534; }
.bs-rejected { background: #fee2e2; color: #991b1b; }
.bs-active   { background: #dbeafe; color: #1e40af; }
.bs-inactive { background: #f1f5f9; color: #64748b; }
.bs-review   { background: #ede9fe; color: #5b21b6; }

/* ─── ACTION BUTTONS ─────────────────────────────────────────── */
.act-btn {
    width: 28px; height: 28px;
    border-radius: 7px;
    border: none;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all .2s;
    text-decoration: none;
}

.act-btn:hover { opacity: .8; transform: scale(1.05); }
.act-view    { background: #dbeafe; color: #1e40af; }
.act-edit    { background: #fef3c7; color: #92400e; }
.act-approve { background: #dcfce7; color: #166534; }
.act-reject  { background: #fee2e2; color: #991b1b; }
.act-delete  { background: #fee2e2; color: #991b1b; }
.act-remind  { background: #ffedd5; color: #c2410c; }

/* ─── EXPORT BUTTONS ─────────────────────────────────────────── */
.export-group { display: flex; gap: 6px; flex-wrap: wrap; }

.btn-exp {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 5px;
    transition: opacity .2s;
}

.btn-exp:hover { opacity: .85; }
.btn-exp.csv   { background: #dcfce7; color: #166534; }
.btn-exp.pdf   { background: #fee2e2; color: #991b1b; }
.btn-exp.excel { background: #dbeafe; color: #1e40af; }

/* ─── TABLE AVATAR ───────────────────────────────────────────── */
.tbl-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.tbl-avatar-ph {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
}

.av-blue   { background: var(--primary); }
.av-orange { background: var(--secondary); }
.av-green  { background: #16a34a; }
.av-purple { background: #8b5cf6; }
.av-red    { background: #ef4444; }
.av-cyan   { background: #06b6d4; }
.av-pink   { background: #d946ef; }

/* ─── COMMITTEE CARDS ────────────────────────────────────────── */
.avatar-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; color: #fff;
    object-fit: cover;
}

.committee-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: box-shadow .2s, transform .2s, border-color .2s;
    height: 100%;
}

.committee-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); border-color: #cbd5e1; }
.committee-card.is-president { border-color: #fed7aa; background: #fffaf3; }

/* ─── MODAL ──────────────────────────────────────────────────── */
.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,32,68,.5);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal.open { display: flex; }

.modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    animation: mIn .25s ease;
}

.modal-box.lg { max-width: 860px; }
.modal-box.xl { max-width: 1100px; }

@keyframes mIn {
    from { opacity: 0; transform: scale(.96) translateY(-8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-hd {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}

.modal-hd h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin: 0; }

.modal-close-btn {
    width: 30px; height: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 15px;
    transition: all .2s;
}

.modal-close-btn:hover { background: var(--bg); color: var(--text); }

.modal-bd { padding: 22px; }

.modal-ft {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: flex-end; gap: 8px;
}

/* ─── DETAIL VIEW ────────────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.detail-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.detail-row:last-child { border-bottom: none; }

.dl { font-size: 11.5px; font-weight: 700; color: var(--muted); min-width: 160px; }
.dv { font-size: 13px; color: var(--text); }

/* ─── CHART ──────────────────────────────────────────────────── */
.chart-wrap { position: relative; height: 250px; }

/* ─── VILLAGE BAR ────────────────────────────────────────────── */
.vill-bar-bg {
    background: var(--bg);
    border-radius: 4px;
    height: 5px;
    overflow: hidden;
    margin-top: 4px;
}

.vill-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width .5s ease;
}

/* ─── LOGIN PAGE ─────────────────────────────────────────────── */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a6b 60%, #1e4db0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    top: -200px; right: -200px;
}

.login-page::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(249,115,22,.08);
    bottom: -150px; left: -100px;
}

.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
    position: relative;
    z-index: 1;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo .logo-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px; color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(26,58,107,.3);
}

.login-logo .logo-img {
    width: 84px; height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(26,58,107,.25);
}

.sidebar-brand .brand-logo {
    width: 100%;
    max-width: 65px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.login-logo h2 { font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1.3; }
.login-logo p  { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.login-form .form-label { font-size: 12.5px; font-weight: 600; color: var(--text); }

.login-form .form-control {
    border-radius: 10px;
    border-color: var(--border);
    padding: 10px 14px;
    font-size: 14px;
}

.login-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,58,107,.12);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .3px;
}

.btn-login:hover { box-shadow: 0 6px 20px rgba(26,58,107,.35); transform: translateY(-1px); }

/* ─── BLOOD BADGE ────────────────────────────────────────────── */
.blood-badge {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    display: inline-block;
}

/* ─── GENDER BADGE ───────────────────────────────────────────── */
.gender-m { background: #dbeafe; color: #1e40af; padding: 2px 9px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.gender-f { background: #fce7f3; color: #9d174d; padding: 2px 9px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ─── TOGGLE ─────────────────────────────────────────────────── */
.tgl { position: relative; display: inline-block; width: 40px; height: 22px; }
.tgl input { display: none; }
.tgl-sl { position: absolute; inset: 0; background: #cbd5e1; border-radius: 22px; cursor: pointer; transition: .3s; }
.tgl-sl::before { content: ''; position: absolute; width: 16px; height: 16px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: .3s; }
.tgl input:checked + .tgl-sl { background: var(--primary); }
.tgl input:checked + .tgl-sl::before { transform: translateX(18px); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .page-content { padding: 16px; }
}

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

/* ─── UTILITIES ──────────────────────────────────────────────── */
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-primary-c { color: var(--primary); }
.text-secondary-c { color: var(--secondary); }
.text-muted-c { color: var(--muted); }
.gap-6 { gap: 6px; }
.rounded-8 { border-radius: 8px; }

/* DataTables overrides */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 13px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,58,107,.1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--bg) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
    border-radius: 8px !important;
}

.dt-buttons .dt-button {
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
    border: none !important;
}

.dt-buttons .buttons-csv   { background: #dcfce7 !important; color: #166534 !important; }
.dt-buttons .buttons-excel { background: #dbeafe !important; color: #1e40af !important; }
.dt-buttons .buttons-pdf   { background: #fee2e2 !important; color: #991b1b !important; }
.dt-buttons .buttons-print { background: #f1f5f9 !important; color: #1e293b !important; }

/* Post cards */
.post-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .2s; background: #fff; }
.post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.post-card-img { width: 100%; height: 150px; object-fit: cover; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 30px; }
.post-card-body { padding: 14px; }
.post-card-title { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.post-card-meta { font-size: 11.5px; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; }
.post-tag { background: var(--bg); color: var(--muted); padding: 2px 8px; border-radius: 20px; font-size: 11px; }

/* CMS */
.cms-item { border: 1px solid var(--border); border-radius: 12px; padding: 16px; cursor: pointer; transition: all .2s; background: #fff; }
.cms-item:hover { border-color: var(--primary); box-shadow: 0 4px 14px rgba(26,58,107,.1); }
.cms-item .ci-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
.cms-item .ci-title { font-size: 14px; font-weight: 700; color: var(--text); }
.cms-item .ci-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Booking time slot */
.time-slot { padding: 6px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 12px; cursor: pointer; transition: all .2s; }
.time-slot:hover, .time-slot.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.time-slot.booked { background: #fee2e2; color: #991b1b; border-color: #fecaca; cursor: not-allowed; }

/* Section head */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-head h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
