/* ============================================================
   NEXABROAD GLOBAL STYLES – MOBILE-FIRST
   Designed for phones first, scales to tablets & desktops.
   ============================================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #080C1A;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #60A5FA;
}

/* ---------- MOBILE-FIRST GRID SYSTEM ---------- */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 16px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* ---------- UTILITY CLASSES ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center { text-align: center; }
.text-muted { color: rgba(255,255,255,0.5); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ---------- CARDS ---------- */
.card {
    background: #0F172A;
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ---------- BUTTONS (44px minimum touch target) ---------- */
.btn-primary {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(37,99,235,0.3);
    font-family: inherit;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #2563EB;
}

.btn-success {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}

/* ---------- FORMS (Mobile-first, prevents iOS zoom) ---------- */
input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563EB;
}
textarea {
    resize: vertical;
    min-height: 80px;
}

/* ---------- HEADER (Mobile-First) ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 12, 26, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 12px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.header-logo img {
    height: 32px;
    width: auto;
}
.header-logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.5px;
}
.header-logo span .accent {
    color: #2563EB;
}
/* Mobile Hamburger */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.menu-toggle:hover {
    background: rgba(255,255,255,0.12);
}
/* Desktop Nav (hidden on mobile) */
.header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 26, 0.98);
    padding: 16px 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    list-style: none;
}
.header-nav.open {
    display: flex;
}
.header-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.2s;
}
.header-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.header-nav .btn-demo {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 60px;
}
.header-nav .btn-demo:hover {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

/* ---------- SIDEBAR (Off-Canvas Drawer) ---------- */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #0F172A;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 24px 18px;
    z-index: 9999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.6);
}
.sidebar.open {
    left: 0;
}
.sidebar .logo {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    text-decoration: none;
}
.sidebar .logo i {
    color: #2563EB;
    background: none;
}
.sidebar .user-card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}
.sidebar .user-card .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}
.sidebar .user-card .role {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.sidebar .user-card .school {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
.sidebar nav .nav-section {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.3);
    margin: 16px 0 6px 12px;
    font-weight: 600;
}
.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 100px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}
.sidebar nav a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.sidebar nav a.active {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.sidebar nav a i {
    width: 20px;
    text-align: center;
}
.sidebar .logout {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}
.sidebar .logout a {
    color: #EF4444;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.15s;
}
.sidebar .logout a:hover {
    background: rgba(239,68,68,0.1);
}
/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}
.sidebar-overlay.active {
    display: block;
}

/* ---------- MAIN CONTENT ---------- */
.main {
    padding: 16px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 80px; /* Header offset */
}

/* ---------- DEMO BANNER ---------- */
.demo-banner {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(37,99,235,0.3);
    font-size: 0.85rem;
}
.demo-banner i {
    margin-right: 6px;
}
.demo-banner .highlight {
    background: rgba(255,255,255,0.15);
    padding: 2px 12px;
    border-radius: 60px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}
.demo-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
}
.top-bar h1 {
    font-size: 1.2rem;
    font-weight: 700;
    flex: 1;
    min-width: 0;
}
.top-bar h1 small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 0;
}
.top-bar .actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

/* ---------- LESSON STEP (for teacher_lesson_guide) ---------- */
.lesson-step {
    background: #0F172A;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.lesson-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}
.lesson-step h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.lesson-step .duration {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}
.lesson-step .meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}
.lesson-step .meta strong {
    color: #fff;
}
.lesson-step .script,
.lesson-step .board {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.7;
}
.lesson-step .script {
    border-left: 3px solid #2563EB;
}
.lesson-step .script .label,
.lesson-step .board .label {
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}
.lesson-step .board {
    border: 1px dashed rgba(255,255,255,0.1);
}
.lesson-step .questions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px 16px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 12px 16px;
}
.lesson-step .questions .q-label {
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.lesson-step .questions .q {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.lesson-step .questions .q strong {
    color: #fff;
}
.lesson-step .timing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 12px;
}
.lesson-step .timing strong {
    color: #fff;
}
.lesson-step .gese-focus {
    background: rgba(37,99,235,0.08);
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid rgba(37,99,235,0.15);
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.lesson-step .gese-focus strong {
    color: #3B82F6;
}

/* ---------- PROGRESS BAR (Scrollable) ---------- */
.progress-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    padding: 8px 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-bar::-webkit-scrollbar {
    display: none;
}
.progress-bar .step {
    background: rgba(255,255,255,0.04);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
    flex-shrink: 0;
    transition: 0.3s;
}
.progress-bar .step.active {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: #fff;
    border-color: transparent;
}
.progress-bar .step.done {
    background: rgba(16,185,129,0.15);
    color: #10B981;
    border-color: transparent;
}

/* ---------- EVIDENCE / REFLECTION FORMS ---------- */
.evidence-form,
.reflection-form {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}
.evidence-form .student-list {
    max-height: 200px;
    overflow-y: auto;
}
.evidence-form .student-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    gap: 6px;
}
.evidence-form .student-item:last-child {
    border-bottom: none;
}
.evidence-form .student-item select {
    width: auto;
    flex: 1;
    min-width: 100px;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #080C1A;
    color: #fff;
}
.reflection-form select,
.reflection-form textarea {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #080C1A;
    color: #fff;
    margin-top: 4px;
}
.reflection-form textarea {
    resize: vertical;
    min-height: 60px;
}

/* ---------- AI SUMMARY ---------- */
.ai-summary {
    background: rgba(16,185,129,0.05);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(16,185,129,0.15);
    margin-top: 12px;
}
.ai-summary .title {
    font-weight: 700;
    color: #10B981;
}
.ai-summary p {
    margin-top: 4px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ---------- FOOTER ---------- */
.footer {
    background: #080C1A;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 16px 24px;
    margin-top: 40px;
}
.footer .partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.footer .partner-logos .partner-item {
    background: rgba(255,255,255,0.03);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.footer .footer-links a {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    text-decoration: none;
}
.footer .footer-links a:hover {
    color: rgba(255,255,255,0.6);
}
.footer .copyright {
    text-align: center;
    color: rgba(255,255,255,0.15);
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 16px;
}

/* ---------- TABLE (for admin-leads) ---------- */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
}
.table-wrap table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 13px;
}
.table-wrap th {
    text-align: left;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.table-wrap td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: middle;
}

/* ---------- STATUS BADGES ---------- */
.status-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}
.status-new {
    background: #2563EB;
    color: #fff;
}
.status-contacted {
    background: #F59E0B;
    color: #080C1A;
}
.status-qualified {
    background: #10B981;
    color: #fff;
}
.status-lost {
    background: #EF4444;
    color: #fff;
}

/* ============================================================
   TABLET & UP (641px)
   ============================================================ */
@media (min-width: 641px) {
    .container {
        padding: 0 24px;
    }
    .main {
        padding: 24px 32px;
        padding-top: 80px;
    }
    .top-bar h1 {
        font-size: 1.5rem;
    }
    .top-bar h1 small {
        display: inline;
        font-size: 0.9rem;
        margin-left: 6px;
    }
    .top-bar .actions {
        width: auto;
    }
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .lesson-step {
        padding: 24px 28px;
    }
    .lesson-step .questions {
        grid-template-columns: 1fr 1fr;
    }
    .lesson-step .timing {
        flex-direction: row;
        gap: 16px;
    }
    .demo-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 24px;
    }
    .header {
        padding: 0 24px;
    }
    .header-nav {
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        border-bottom: none;
        gap: 16px;
        display: none;
    }
    .header-nav.open {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
    .sidebar {
        position: sticky;
        left: 0 !important;
        width: 220px;
        height: 100vh;
        box-shadow: none;
        border-right: 1px solid rgba(255,255,255,0.06);
        padding: 24px 16px;
        transform: none !important;
        transition: none;
        background: #0F172A;
    }
    .sidebar-overlay {
        display: none !important;
    }
    body {
        display: flex;
    }
    .main {
        flex: 1;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ============================================================
   DESKTOP (1025px)
   ============================================================ */
@media (min-width: 1025px) {
    .header-nav {
        display: flex !important;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .sidebar {
        width: 240px;
        padding: 28px 18px;
    }
    .sidebar.collapsed {
        width: 72px;
        padding: 16px 10px;
    }
    .sidebar.collapsed .logo span,
    .sidebar.collapsed .user-card,
    .sidebar.collapsed nav a span,
    .sidebar.collapsed .nav-section,
    .sidebar.collapsed .logout span {
        display: none;
    }
    .main {
        padding: 32px 48px;
    }
}

/* ============================================================
   PRINT STYLES (For Manual Mode)
   ============================================================ */
@media print {
    .no-print,
    .sidebar,
    .top-bar .actions,
    .btn-secondary,
    .btn-primary,
    .btn-success,
    .btn-print,
    .progress-bar,
    .actions .btn-secondary,
    .evidence-form .btn-success,
    .demo-banner,
    .header,
    .menu-toggle,
    .footer {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
    @page {
        size: A4;
        margin: 15mm 12mm;
    }
    .main {
        padding: 0 !important;
        max-width: 100% !important;
        background: #fff !important;
        padding-top: 0 !important;
    }
    .lesson-step {
        background: #fff !important;
        color: #000 !important;
        padding: 12px 16px !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        border-radius: 8px !important;
        page-break-inside: avoid;
        margin-bottom: 12px;
    }
    .lesson-step::before {
        display: none;
    }
    .lesson-step h2 {
        color: #000 !important;
        font-size: 16px !important;
    }
    .lesson-step .duration,
    .lesson-step .meta,
    .lesson-step .meta strong {
        color: #333 !important;
    }
    .lesson-step .script,
    .lesson-step .board,
    .lesson-step .questions,
    .lesson-step .timing,
    .lesson-step .gese-focus {
        background: #f5f5f5 !important;
        border-color: #ddd !important;
        color: #000 !important;
    }
    .lesson-step .script .label,
    .lesson-step .board .label,
    .lesson-step .questions .q-label {
        color: #555 !important;
    }
    .lesson-step .questions .q {
        color: #222 !important;
    }
    .lesson-step .questions .q strong {
        color: #000 !important;
    }
    .top-bar h1 {
        color: #000 !important;
        font-size: 18px !important;
    }
    .top-bar h1 small {
        color: #555 !important;
    }
    .print-header {
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        border-bottom: 2px solid #000;
        padding-bottom: 6px;
        margin-bottom: 12px;
        color: #000;
    }
    .print-header .sub {
        font-size: 10px;
        font-weight: normal;
        color: #555;
    }
    .print-only {
        display: block !important;
    }
}
.print-only {
    display: none;
}