/* ============================================================
   SRCSO Volunteer Application Portal
   Global Stylesheet
   ============================================================ */

:root {
    --brand: #4b6cff;
    --brand-dark: #3453d9;
    --brand-light: #eef1ff;
    --ink: #1c2333;
    --ink-soft: #454f63;
    --muted: #7a8499;
    --line: #e4e7ee;
    --bg: #f5f7fb;
    --white: #ffffff;
    --success: #17a76a;
    --success-bg: #e7f7ef;
    --danger: #d94848;
    --danger-bg: #fdeaea;
    --warning: #b7791f;
    --warning-bg: #fdf3e0;
    --radius: 10px;
    --radius-sm: 7px;
    --shadow: 0 1px 3px rgba(28, 35, 51, .08), 0 8px 24px rgba(28, 35, 51, .06);
    --shadow-sm: 0 1px 2px rgba(28, 35, 51, .06);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; font-size: .92em; }
.muted { color: var(--muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.hint { color: var(--muted); font-size: .85em; font-weight: 400; }
.req { color: var(--danger); }
.truncate { max-width: 240px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
   Branding / logo
   ============================================================ */
.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--brand), #7c5cff);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: .3px; color: var(--ink); }
.brand-tag { font-size: 12px; color: var(--muted); }

/* ============================================================
   Top bar (public pages)
   ============================================================ */
.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topnav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topnav a { color: var(--ink-soft); font-weight: 500; font-size: 14px; }
.topnav a:hover { color: var(--brand); text-decoration: none; }
.nav-user { font-weight: 600; font-size: 14px; color: var(--ink); }

/* ============================================================
   Page head
   ============================================================ */
.page-head { padding: 40px 0 26px; text-align: center; }
.page-head h1 { font-size: 30px; font-weight: 800; letter-spacing: -.3px; }
.page-head p { color: var(--muted); margin-top: 8px; max-width: 560px; margin-inline: auto; }
.apply-head { text-align: left; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
    text-decoration: none !important;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink-soft); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c43b3b; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-block { width: 100%; }
.arrow { font-size: 16px; line-height: 1; }

/* ============================================================
   Form controls
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 6px;
    color: var(--ink-soft);
}
.label-row { display: flex; align-items: center; justify-content: space-between; }
.link-sm { font-size: 13px; color: var(--brand); }
.form-control {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-family: inherit;
    color: var(--ink);
    background: var(--white);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(75, 108, 255, .15);
}
textarea.form-control { resize: vertical; min-height: 90px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}
.span-2 { grid-column: 1 / -1; }

/* Checkbox chips (availability) */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.check-chip { cursor: pointer; }
.check-chip span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--white);
    transition: all .15s ease;
    user-select: none;
}
.check-chip input { display: none; }
.check-chip input:checked + span { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Checkbox cards (interests) */
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.check-card { cursor: pointer; }
.check-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--ink-soft);
    background: var(--white);
    transition: all .15s ease;
    user-select: none;
}
.check-card input { accent-color: var(--brand); }
.check-card input:checked + span { border-color: var(--brand); background: var(--brand-light); color: var(--brand-dark); font-weight: 600; }

.check-line { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: 500; }
.check-line input { margin-top: 3px; accent-color: var(--brand); }

/* ============================================================
   File drop
   ============================================================ */
.file-drop { position: relative; border: 2px dashed var(--line); border-radius: var(--radius); background: var(--white); transition: all .15s ease; }
.file-drop:hover, .file-drop.dragover { border-color: var(--brand); background: var(--brand-light); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-drop-inner { padding: 30px 20px; text-align: center; color: var(--muted); }
.file-drop-inner svg { color: var(--brand); margin-bottom: 8px; }
.file-drop-inner p { font-size: 14px; }
.file-drop-inner .file-name { display: block; margin-top: 6px; font-weight: 600; color: var(--brand-dark); font-size: 13px; word-break: break-all; }

/* ============================================================
   Wizard (college-style application)
   ============================================================ */
.wizard-steps {
    display: flex;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 28px;
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}
.wizard-step {
    flex: 1;
    min-width: 110px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 6px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--line);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.wizard-step.active { color: var(--brand); }
.wizard-step.active .step-num { background: var(--brand); border-color: var(--brand); color: #fff; }
.wizard-step.done .step-num { background: var(--success); border-color: var(--success); color: #fff; }
.wizard-step.done { color: var(--success); }

.wizard-panel {
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
    animation: fadeIn .25s ease;
}
.wizard-panel.active { display: block; }
.wizard-panel h2 { font-size: 22px; font-weight: 800; letter-spacing: -.2px; margin-bottom: 4px; }
.panel-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Password meter */
.password-meter { height: 6px; background: var(--bg); border-radius: 4px; margin-top: 8px; overflow: hidden; }
.meter-bar { height: 100%; width: 0; background: var(--danger); border-radius: 4px; transition: width .3s ease, background .3s ease; }

/* Review card */
.review-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}
.review-section { margin-bottom: 18px; }
.review-section:last-child { margin-bottom: 0; }
.review-section h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 8px; }
.review-section p { font-size: 14.5px; }
.review-section .rv { color: var(--ink-soft); }

/* ============================================================
   Auth pages (Okta-style)
   ============================================================ */
.auth-body {
    background:
        radial-gradient(1200px 600px at 100% -10%, rgba(75, 108, 255, .18), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(124, 92, 255, .14), transparent 60%),
        #f6f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px 16px;
}
.auth-wrap { width: 100%; max-width: 420px; text-align: center; }
.auth-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 40px 38px 32px;
    box-shadow: var(--shadow);
    text-align: left;
}
.auth-logo { text-align: center; margin-bottom: 16px; }
.auth-logo .logo-mark { width: 52px; height: 52px; font-size: 26px; border-radius: 12px; }
.auth-title { font-size: 24px; font-weight: 800; text-align: center; letter-spacing: -.3px; }
.auth-subtitle { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12.5px; margin: 20px 0 16px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-foot { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 20px; }
.auth-foot a { font-weight: 600; }
.auth-hint { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.auth-legal { color: var(--muted); font-size: 12px; margin-top: 18px; }

/* ============================================================
   Alerts
   ============================================================ */
.alert {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.alert-success { background: var(--success-bg); border-color: #bde8d1; color: #0d7a4d; }
.alert-danger  { background: var(--danger-bg); border-color: #f3c3c3; color: #b03535; }
.alert-warning { background: var(--warning-bg); border-color: #ecd9ab; color: var(--warning); }

/* ============================================================
   Status lookup
   ============================================================ */
.status-lookup-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto 40px;
}
.lookup-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
.lookup-form .form-group { margin-bottom: 0; }
@media (max-width: 720px) { .lookup-form { grid-template-columns: 1fr; } }

.status-result { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; }
.status-result-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.status-result-head h3 { font-size: 19px; }
.status-result-cta { margin-top: 24px; text-align: center; padding-top: 20px; border-top: 1px solid var(--line); }
.status-result-cta p { color: var(--muted); margin-bottom: 12px; font-size: 14px; }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
}
.badge-pending  { background: var(--warning-bg); color: var(--warning); }
.badge-review   { background: var(--brand-light); color: var(--brand-dark); }
.badge-approved { background: var(--success-bg); color: var(--success); }
.badge-rejected { background: var(--danger-bg); color: var(--danger); }

/* Timeline */
.status-timeline { position: relative; padding-left: 26px; }
.status-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--line);
}
.tl-item { position: relative; padding: 0 0 24px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--line);
}
.tl-item.done .tl-dot { background: var(--success); border-color: var(--success); }
.tl-body h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.tl-body p { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   Success page
   ============================================================ */
.success-wrap { text-align: center; max-width: 620px; margin: 40px auto 60px; padding: 44px 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.success-icon { color: var(--success); margin-bottom: 16px; }
.success-wrap h1 { font-size: 28px; font-weight: 800; letter-spacing: -.3px; }
.success-name { color: var(--ink-soft); margin: 8px 0 22px; }
.tracking-box { background: var(--brand-light); border: 1px solid #d3dcff; border-radius: var(--radius); padding: 22px; margin-bottom: 24px; }
.tracking-box p { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.tracking-id { font-size: 26px; font-weight: 800; letter-spacing: 1px; color: var(--brand-dark); font-family: "SFMono-Regular", Consolas, monospace; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Panels & layout (dashboard / portal)
   ============================================================ */
.dashboard-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-bottom: 40px; align-items: start; }
@media (max-width: 900px) { .dashboard-grid { grid-template-columns: 1fr; } }

.panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.panel-head h2 { font-size: 17px; font-weight: 800; letter-spacing: -.2px; }
.panel-divider { border-top: 1px solid var(--line); margin: 22px 0; }
.panel > h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.detail-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.detail-value { font-size: 14.5px; color: var(--ink); word-break: break-word; }

.resume-link { margin-top: 16px; }

/* Document list */
.doc-list { display: flex; flex-direction: column; gap: 10px; }
.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
}
.doc-icon { font-size: 20px; }
.doc-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.doc-info strong { font-size: 14px; }
.doc-info .muted { font-size: 12px; }
.doc-actions { display: flex; gap: 6px; }

.doc-upload-form { margin-top: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }

/* Document request cards (volunteer portal) */
.req-list { display: flex; flex-direction: column; gap: 14px; }
.req-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}
.req-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.req-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.req-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.req-info strong { font-size: 14.5px; color: var(--ink); }
.req-info .muted { font-size: 12.5px; }
.req-upload { display: flex; align-items: center; gap: 10px; }
.req-file { flex: 1; min-width: 0; }
.req-file-inner { padding: 12px 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.req-file-inner svg { color: var(--brand); margin: 0; flex-shrink: 0; }
.req-file-label { font-size: 13px; font-weight: 600; color: var(--brand-dark); }
.req-file-name { font-size: 12.5px; color: var(--muted); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.req-upload .btn { flex-shrink: 0; }
@media (max-width: 640px) {
    .req-upload { flex-direction: column; align-items: stretch; }
    .req-upload .btn { width: 100%; }
}

.empty-state { text-align: center; color: var(--muted); padding: 26px 10px; font-size: 14px; }

/* ============================================================
   Admin layout
   ============================================================ */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }

.sidebar {
    width: 240px;
    background: var(--ink);
    color: #cbd2e0;
    display: flex;
    flex-direction: column;
    padding: 22px 16px;
    position: sticky;
    top: 0;
    height: 100vh;
    flex-shrink: 0;
}
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 0 6px 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-brand .brand-name { color: #fff; }
.sidebar-brand .brand-tag { color: #8b95ad; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; flex: 1; }
.sidebar-nav a {
    color: #cbd2e0;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: all .15s ease;
}
.sidebar-nav a:hover { background: rgba(255,255,255,.06); color: #fff; text-decoration: none; }
.sidebar-nav a.active { background: var(--brand); color: #fff; }
.sidebar-foot { padding: 12px 8px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; color: #8b95ad; }

.admin-main { flex: 1; padding: 28px 34px 50px; min-width: 0; }
.admin-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-topbar h1 { font-size: 26px; font-weight: 800; letter-spacing: -.3px; }
.back-link { font-size: 13.5px; font-weight: 600; color: var(--brand); }
.topbar-actions { display: flex; align-items: center; gap: 10px; }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 900px) { .stat-cards { grid-template-columns: repeat(2, 1fr); } }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.stat-label { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.stat-value { font-size: 30px; font-weight: 800; letter-spacing: -.5px; margin-top: 4px; display: block; }

/* Filter bar */
.filter-bar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.filter-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-form .form-group { margin-bottom: 0; }
.filter-form .form-control { width: auto; min-width: 220px; }

/* Table */
.table-panel { padding: 0; overflow: hidden; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    background: #fafbfd;
    white-space: nowrap;
}
.table td { padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: #fafbff; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px; border-top: 1px solid var(--line); }
.page-info { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* Status update form */
.status-update-form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.status-update-form .form-group { margin-bottom: 0; flex: 1; min-width: 180px; }

/* ============================================================
   Installer
   ============================================================ */
.install-body { align-items: flex-start; padding-top: 60px; }
.install-card { max-width: 560px; }
.fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 22px; }
.fieldset legend { font-weight: 700; font-size: 14px; color: var(--ink); padding: 0 8px; }
.install-info { background: var(--brand-light); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 18px; font-size: 14px; }
.install-info ul { padding-left: 18px; margin-top: 6px; color: var(--ink-soft); }
.install-info li { margin: 4px 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--white); padding: 22px 0; margin-top: 20px; }
.site-footer p { color: var(--muted); font-size: 13px; text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .wizard-panel { padding: 24px 20px; }
    .sidebar { width: 68px; padding: 22px 10px; }
    .sidebar .brand-name, .sidebar .brand-tag, .sidebar-nav a { font-size: 0; }
    .sidebar-nav a { text-align: center; padding: 12px 4px; }
    .sidebar-nav a::first-letter { font-size: 15px; }
    .sidebar-foot span { display: none; }
    .admin-main { padding: 20px 16px 40px; }
    .detail-grid { grid-template-columns: 1fr; }
    .admin-topbar h1 { font-size: 22px; }
}

