        :root {
            --wu-blue: #003366;
            --wu-blue-light: #0a4a7a;
            --wu-gold: #C4A23C;
            --wu-gold-light: #d4b44c;
            --light-blue: #e8f0f8;
            --light-gray: #f5f5f5;
            --med-gray: #e0e0e0;
            --text: #333;
            --text-light: #666;
            --border: #ccc;
            --white: #fff;
            --warning-bg: #fff8e1;
            --info-bg: #e8f0f8;
        }

        /** { margin: 0; padding: 0; box-sizing: border-box; }*/

        /*body {*/
        /*    font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;*/
        /*    background: #e8ecf1;*/
        /*    color: var(--text);*/
        /*    line-height: 1.5;*/
        /*    -webkit-print-color-adjust: exact;*/
        /*    print-color-adjust: exact;*/
        /*}*/

        /* ── PRINT BUTTON BAR ── */
        .action-bar {
            position: relative;
            z-index: 100;
            background: var(--wu-blue);
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        .btn-save { pointer-events:auto; position:relative; z-index:5; 
            background: var(--wu-gold);
            color: var(--wu-blue);
            border: none;
            padding: 10px 28px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Source Sans 3', sans-serif;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-save:hover {
            background: var(--wu-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(196,162,60,0.4);
        }

        .btn-save svg { width: 18px; height: 18px; }

        .btn-upload-bar {
            background: transparent;
            color: var(--wu-gold);
            border: 2px solid var(--wu-gold);
            padding: 8px 22px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Source Sans 3', sans-serif;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-upload-bar:hover {
            background: var(--wu-gold);
            color: var(--wu-blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(196,162,60,0.4);
        }

        /* ── CONTAINER ── */
        /*.container {*/
        /*    max-width: 900px;*/
        /*    margin: 0 auto 60px;*/
        /*    background: var(--white);*/
        /*    box-shadow: 0 0 30px rgba(0,0,0,0.08);*/
        /*}*/

        /* ── HEADER ── */
        .doc-header {
            background: var(--wu-blue);
            padding: 36px 44px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .doc-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--wu-gold);
        }

        .doc-header h1 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--white);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .doc-header .subtitle {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .doc-header .instruction {
            color: var(--wu-gold);
            font-size: 12px;
            font-style: italic;
            margin-top: 10px;
        }

        /* ── BODY ── */
        .doc-body { padding: 32px 44px 44px; }

        /* ── SECTION HEADERS ── */
        .section-header {
            background: var(--wu-blue);
            color: var(--white);
            padding: 9px 16px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin: 32px 0 18px;
            border-left: 4px solid var(--wu-gold);
        }

        .section-header:first-child { margin-}

        /* ── FORM FIELDS ── */
        .field-row {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
            align-items: flex-end;
        }

        .field-row.stacked { flex-direction: column; align-items: stretch; gap: 4px; }

        .field-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .field-group.narrow { flex: 0 0 auto; min-width: 180px; }

        .field-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--wu-blue);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
            border: none;
            border-bottom: 2px solid var(--med-gray);
            padding: 6px 2px;
            font-size: 14px;
            font-family: 'Source Sans 3', sans-serif;
            color: var(--text);
            background: transparent;
            transition: border-color 0.2s;
            width: 100%;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-bottom-color: var(--wu-gold);
        }

        textarea {
            resize: vertical;
            min-height: 60px;
            border: 2px solid var(--med-gray);
            border-radius: 4px;
            padding: 8px;
        }

        textarea:focus { border-color: var(--wu-gold); }

        /* ── YES/NO TOGGLE ── */
        .yn-group {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 10px 0;
        }

        .yn-group .yn-question {
            flex: 1;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }

        .yn-toggle {
            display: flex;
            border: 2px solid var(--med-gray);
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .yn-toggle label {
            padding: 4px 18px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.15s;
            color: var(--text-light);
            user-select: none;
        }

        .yn-toggle label:first-of-type { border-right: 2px solid var(--med-gray); }

        .yn-toggle input { display: none; }

        .yn-toggle input:checked + label {
            background: var(--wu-blue);
            color: var(--white);
        }

        /* ── CHECKBOX GRID ── */
        .check-grid {
            display: grid;
            gap: 0;
            margin: 8px 0 16px;
        }

        .check-grid.cols-2 { grid-template-columns: 1fr 1fr; }
        .check-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
        .check-grid.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

        .check-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border: 2px solid #d9e2ec;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.22s ease;
            font-size: 14px;
            font-weight: 500;
            user-select: none;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            color: var(--text);
            min-height: 50px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.03);
        }

        .check-item:hover {
            background: linear-gradient(180deg, #fffef8 0%, #f8fbff 100%);
            border-color: var(--wu-gold);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0, 51, 102, 0.08);
        }

        .check-item.checked {
            background: linear-gradient(135deg, rgba(0,51,102,0.06) 0%, rgba(196,162,60,0.12) 100%);
            border-color: var(--wu-gold);
            color: var(--wu-blue);
            font-weight: 700;
            box-shadow: 0 0 0 3px rgba(196,162,60,0.14);
        }

        .check-item input[type="checkbox"] { display: none; }

        .check-box {
            width: 22px;
            height: 22px;
            border: 2px solid #b8c6d6;
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.22s ease;
            background: white;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
        }

        .check-item.checked .check-box {
            background: linear-gradient(135deg, var(--wu-blue) 0%, #0a4a7a 100%);
            border-color: var(--wu-gold);
            box-shadow: 0 0 0 3px rgba(196,162,60,0.18);
        }

        .check-box svg {
            display: none;
            width: 13px;
            height: 13px;
            color: white;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .check-item.checked .check-box svg { display: block; }

        .check-item .write-in {
            border: none;
            border-bottom: 2px solid #cbd5e1;
            padding: 2px 4px;
            font-size: 13px;
            background: transparent;
            width: 160px;
            font-family: 'Source Sans 3', sans-serif;
            margin-left: 2px;
        }

        .check-item .write-in:focus {
            outline: none;
            border-bottom-color: var(--wu-gold);
        }

        .check-grid {
            gap: 10px;
        }

        @media (max-width: 768px) {
            .check-item {
                min-height: 46px;
                padding: 11px 12px;
                font-size: 13px;
            }
            .check-box {
                width: 20px;
                height: 20px;
            }
            .check-item .write-in {
                width: 100%;
                min-width: 120px;
            }
        }

        @media print {
            .check-item {
                box-shadow: none !important;
                transform: none !important;
                border-radius: 8px;
            }
            .check-item.checked {
                background: linear-gradient(135deg, rgba(0,51,102,0.12) 0%, rgba(196,162,60,0.18) 100%) !important;
                border-color: var(--wu-blue) !important;
                box-shadow: none !important;
            }
        }

        /* ── STAFFING TABLE ── */
        .staff-table {
            width: 100%;
            border-collapse: collapse;
            margin: 8px 0 16px;
        }

        .staff-table th {
            background: var(--wu-blue);
            color: var(--white);
            padding: 8px 14px;
            text-align: left;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .staff-table th:last-child { text-align: center; width: 180px; }

        .staff-table td {
            padding: 8px 14px;
            border-bottom: 1px solid var(--med-gray);
            font-size: 14px;
        }

        .staff-table tr:nth-child(even) td { background: var(--light-blue); }

        .staff-table td:last-child { text-align: center; }

        .staff-table td input {
            border: none;
            border-bottom: 2px solid var(--med-gray);
            text-align: center;
            width: 120px;
            padding: 4px;
            font-size: 14px;
            font-family: 'Source Sans 3', sans-serif;
            background: transparent;
        }

        .staff-table td input:focus { outline: none; border-bottom-color: var(--wu-gold); }

        /* ── YES/NO TABLE ── */
        .yn-table {
            width: 100%;
            border-collapse: collapse;
            margin: 8px 0 16px;
        }

        .yn-table th {
            background: var(--wu-blue);
            color: var(--white);
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .yn-table th:first-child { text-align: left; }
        .yn-table th:nth-child(2), .yn-table th:nth-child(3) { width: 70px; text-align: center; }

        .yn-table td {
            padding: 9px 14px;
            border-bottom: 1px solid var(--med-gray);
            font-size: 14px;
        }

        .yn-table tr:nth-child(even) td { background: var(--light-blue); }

        .yn-table td:nth-child(2), .yn-table td:nth-child(3) {
            text-align: center;
            width: 70px;
        }

        .yn-table .table-radio { display: none; }

        .yn-table .radio-dot {
            display: inline-flex;
            width: 22px;
            height: 22px;
            border: 2px solid var(--border);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.15s;
        }

        .yn-table .radio-dot:hover { border-color: var(--wu-blue); }

        .yn-table .table-radio:checked + .radio-dot {
            border-color: var(--wu-blue);
            background: var(--wu-blue);
        }

        .yn-table .table-radio:checked + .radio-dot::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: 700;
        }

        /* ── CALLOUT BOXES ── */
        .callout {
            padding: 14px 18px;
            margin: 12px 0;
            font-size: 13px;
            line-height: 1.6;
            border-radius: 4px;
        }

        .callout.info {
            background: var(--info-bg);
            border-left: 4px solid var(--wu-blue);
            color: #2a4a6a;
        }

        .callout.warning {
            background: var(--warning-bg);
            border-left: 4px solid var(--wu-gold);
            color: #5a4a20;
        }

        .callout.note {
            background: var(--light-gray);
            border-left: 4px solid #999;
            color: #555;
            font-style: italic;
        }

        .callout strong { font-weight: 700; }

        /* ── SUB-LABELS ── */
        .sub-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 6px;
        }

        .note-text {
            font-size: 12px;
            color: var(--text-light);
            font-style: italic;
            margin: 4px 0 10px;
        }

        .question-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin: 14px 0 6px;
        }

        /* ── CONDITIONAL FIELDS ── */
        .conditional { display: none; margin-left: 20px; padding-left: 16px; border-left: 3px solid var(--wu-gold); }
        .conditional.visible { display: block; }

        /* ── FOOTER ── */
        .doc-footer {
            background: var(--wu-blue);
            padding: 20px 44px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 12px;
        }

        .doc-footer a { color: var(--wu-gold); text-decoration: none; }

        /* ── SUBMISSION SECTION ── */
        .submission-box {
            background: var(--light-gray);
            border: 2px solid var(--med-gray);
            border-radius: 6px;
            padding: 20px 24px;
            margin: 16px 0;
        }

        .submission-box .contact {
            font-size: 16px;
            font-weight: 700;
            color: var(--wu-blue);
        }

        .submission-box .contact a { color: var(--wu-blue); }

        .checklist-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 14px;
        }

        .checklist-item .cb {
            width: 18px; height: 18px;
            border: 2px solid var(--wu-blue);
            border-radius: 3px;
            flex-shrink: 0;
        }

        /* ══════════════════════════════════════
           PRINT STYLES
           ══════════════════════════════════════ */
        @media print {
            body {
                background: white;
                padding: 0;
                font-size: 11px;
            }

            .action-bar { display: none !important; }
            .btn-upload-bar { display: none !important; }

            .container {
                box-shadow: none;
                max-width: 100%;
                margin: 0;
            }

            .doc-header {
                padding: 24px 30px 18px;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }

            .doc-header h1 { font-size: 22px; }
            .doc-header .subtitle { font-size: 12px; }

            .doc-body { padding: 20px 30px 30px; }

            .section-header {
                font-size: 11px;
                padding: 6px 12px;
                margin: 20px 0 12px;
                break-after: avoid;
            }

            .field-label { font-size: 9px; }

            input[type="text"], input[type="email"], input[type="tel"],
            input[type="number"], textarea, select,
            .staff-table td input, .check-item .write-in {
                font-size: 11px;
                border-bottom-width: 1px;
            }

            .check-grid { gap: 0; }
            .check-item { padding: 5px 10px; font-size: 11px; }
            .check-box { width: 14px; height: 14px; }

            .staff-table th, .yn-table th { font-size: 10px; padding: 5px 10px; }
            .staff-table td, .yn-table td { padding: 5px 10px; font-size: 11px; }

            .yn-group .yn-question { font-size: 11px; }
            .yn-toggle label { padding: 2px 12px; font-size: 11px; }

            .callout { padding: 8px 12px; font-size: 11px; margin: 8px 0; }

            .sub-label { font-size: 11px; margin: 12px 0 4px; }
            .question-label { font-size: 11px; margin: 8px 0 4px; }
            .note-text { font-size: 10px; }

            textarea { min-height: 40px; }

            .doc-footer { padding: 12px 30px; }

            .yn-table .radio-dot { width: 16px; height: 16px; }

            .submission-box { padding: 14px 18px; }

            /* Keep sections together */
            .section-header, .sub-label, .question-label { break-after: avoid; }
            .staff-table, .yn-table, .check-grid { break-inside: avoid; }

            /* Print checked state for checkboxes */
            .check-item.checked .check-box {
                background: linear-gradient(135deg, var(--wu-blue) 0%, #0a4a7a 100%) !important;
                border-color: var(--wu-gold) !important;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }

            .yn-toggle input:checked + label {
                background: var(--wu-blue) !important;
                color: white !important;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }

            .yn-table .table-radio:checked + .radio-dot {
                background: var(--wu-blue) !important;
                border-color: var(--wu-blue) !important;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
        }

        
        .btn-upload{ pointer-events:auto; position:relative; z-index:5; 
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            background: var(--wu-gold);
            color: var(--wu-blue);
            text-decoration:none;
            border: none;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Source Sans 3', sans-serif;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.2px;
            box-shadow: 0 3px 10px rgba(196,162,60,0.25);
        }
        .btn-upload:hover{
            background: var(--wu-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(196,162,60,0.35);
        }
        @media print {
            .btn-upload { display:none !important; }
        }

.btn-copy {
            background: transparent;
            color: var(--wu-gold);
            border: 2px solid var(--wu-gold);
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Source Sans 3', sans-serif;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .btn-copy:hover {
            background: var(--wu-gold);
            color: var(--wu-blue);
        }

        .spreadsheet-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: white;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            border-top: 3px solid var(--wu-gold);
            max-height: 50vh;
            overflow-y: auto;
        }
        .spreadsheet-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        @media print {
            .spreadsheet-panel { display: none !important; }
        }


        /* ── PROGRESS BAR ── */
        .progress-bar-wrap {
            top: 52px;
            z-index: 99;
            background: #1a2a40;
            padding: 0;
            height: 6px;
        }
        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--wu-gold), #e8c94a);
            width: 0%;
            transition: width 0.4s ease;
            border-radius: 0 3px 3px 0;
        }
        .progress-label {
            position: absolute;
            right: 12px;
            top: -1px;
            font-size: 10px;
            font-weight: 700;
            color: var(--wu-gold);
            line-height: 6px;
            pointer-events: none;
        }

        /* ── VALIDATION ── */
        .field-missing input,
        .field-missing select,
        .field-missing textarea {
            border-bottom-color: #e74c3c !important;
            background: #fef2f2 !important;
        }
        .field-missing .check-grid,
        .field-missing .yn-toggle {
            outline: 2px solid #e74c3c;
            outline-offset: 2px;
            border-radius: 4px;
        }
        .validation-msg {
            display: none;
            background: #fef2f2;
            border: 1px solid #e74c3c;
            border-left: 4px solid #e74c3c;
            color: #c0392b;
            padding: 12px 16px;
            margin: 12px 0;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        .validation-msg.show { display: block; }
        .required-star::after {
            content: ' *';
            color: #e74c3c;
            font-weight: 700;
        }

        /* ── COLLAPSIBLE SECTIONS ── */
        .section-header {
            cursor: pointer;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .section-header::after {
            content: '▾';
            font-size: 16px;
            transition: transform 0.2s;
            margin-left: 8px;
        }
        .section-header.collapsed::after {
            transform: rotate(-90deg);
        }
        .section-content {
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.2s ease;
        }
        .section-content.collapsed {
            max-height: 0 !important;
            opacity: 0;
            overflow: hidden;
        }

        /* ── SAVE PROGRESS BANNER ── */
        .restore-banner {
            display: none;
            background: var(--warning-bg);
            border: 1px solid var(--wu-gold);
            border-left: 4px solid var(--wu-gold);
            padding: 12px 16px;
            margin: 0 0 16px;
            border-radius: 4px;
            font-size: 14px;
            align-items: center;
            gap: 12px;
        }
        .restore-banner.show { display: flex; }
        .restore-banner button {
            padding: 6px 16px;
            border-radius: 4px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .restore-banner .btn-restore {
            background: var(--wu-blue);
            color: white;
        }
        .restore-banner .btn-dismiss {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--border);
        }

        @media print {
            .progress-bar-wrap { display: none !important; }
            .validation-msg { display: none !important; }
            .restore-banner { display: none !important; }
            .section-content.collapsed { max-height: none !important; opacity: 1 !important; }
            .section-header::after { display: none; }
        }

        @page {
            size: letter;
            margin: 0.5in;
        }
    

        /* ── FIXED EMBED/MOBILE IMPROVEMENTS ── */
        .action-bar {
            flex-wrap: wrap;
            padding: 12px 16px;
        }
        .action-bar, .action-bar * { pointer-events: auto; }
        .action-bar .status-msg {
            color:#FFF;
            flex: 1 1 260px;
            text-align: center;
            min-width: 220px;
        }
        .btn-save, .btn-upload-bar {
            min-height: 44px;
            position: relative;
            z-index: 2;
        }
        .intro-card {
            background: linear-gradient(180deg, #f7f9fc 0%, #eef4fa 100%);
            border: 1px solid #d7e2ef;
            border-left: 4px solid var(--wu-gold);
            border-radius: 10px;
            padding: 18px 20px;
            margin: 0 0 18px;
        }
        .intro-card h1 {
            font-size: 24px;
            color: var(--wu-blue);
            margin: 0 0 8px;
            line-height: 1.2;
        }
        .intro-card p {
            margin: 0;
            color: var(--text);
            font-size: 15px;
        }
        .intro-meta {
            margin-top: 10px;
            font-size: 13px;
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            body { background: #f3f6fa; }
            .container {
                width: 100%;
                margin: 0 0 36px;
                box-shadow: none;
            }
            .doc-body {
                padding: 18px 14px 28px;
            }
            .field-row {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .field-group.narrow { min-width: 0; }
            .check-grid.cols-2, .check-grid.cols-3, .check-grid.cols-4 {
                grid-template-columns: 1fr;
            }
            .yn-group {
                flex-direction: column;
                align-items: stretch;
            }
            .yn-toggle {
                width: 100%;
            }
            .yn-toggle label {
                flex: 1 1 50%;
                text-align: center;
                padding: 10px 12px;
            }
            .staff-table, .yn-table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .progress-bar-wrap { }
            .action-bar {
                justify-content: stretch;
                gap: 10px;
            }
            .action-bar img { display: none; }
            .action-bar .status-msg { order: -1; }
            .btn-save, .btn-upload-bar {
                width: 100%;
                justify-content: center;
            }
            .intro-card h1 { font-size: 22px; }
        }
        @media print {
            .intro-card {
                background: #f7f9fc !important;
                border-color: #d7e2ef !important;
                break-inside: avoid;
            }
        }

    
        /* CMS-safe controls */
        .cms-safe-actions,
        .top-actions,
        .action-bar,
        .sticky-actions {
            position: static !important;
            top: auto !important;
            z-index: auto !important;
            margin: 0 0 1rem 0 !important;
            box-shadow: none !important;
            border-radius: 12px !important;
        }

        .cms-safe-actions .button-row,
        .top-actions .button-row,
        .action-bar .button-row,
        .sticky-actions .button-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            justify-content: flex-start;
        }

        .cms-safe-actions .btn,
        .top-actions .btn,
        .action-bar .btn,
        .sticky-actions .btn,
        .cms-top-buttons .btn,
        .cms-bottom-buttons .btn {
            min-height: 44px;
        }

        .cms-top-buttons,
        .cms-bottom-buttons {
            margin: 1rem 0 1.25rem 0;
            padding: 1rem;
            background: #f8fafc;
            border: 1px solid #d8e2ee;
            border-radius: 12px;
        }

        .cms-top-buttons .button-row,
        .cms-bottom-buttons .button-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        .cms-helper-text {
            margin-top: 0.65rem;
            line-height: 1.45;
            color: #46515c;
        }

        @media (max-width: 640px) {
            .cms-safe-actions .button-row,
            .top-actions .button-row,
            .action-bar .button-row,
            .sticky-actions .button-row,
            .cms-top-buttons .button-row,
            .cms-bottom-buttons .button-row {
                flex-direction: column;
                align-items: stretch;
            }

            .cms-safe-actions .btn,
            .top-actions .btn,
            .action-bar .btn,
            .sticky-actions .btn,
            .cms-top-buttons .btn,
            .cms-bottom-buttons .btn {
                width: 100%;
            }
        }

        /* ── COMPETENCY CARDS (NEXT-LEVEL DESIGN) ── */
        .competency-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin: 16px 0 24px;
        }

        .competency-card {
            background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
            border: 1px solid #d4dfe9;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .competency-card:hover {
            border-color: var(--wu-gold);
            box-shadow: 0 4px 16px rgba(196, 162, 60, 0.15);
            transform: translateY(-2px);
        }

        .card-question {
            font-size: 15px;
            font-weight: 600;
            color: var(--wu-blue);
            line-height: 1.5;
            margin-bottom: 16px;
            letter-spacing: 0.2px;
        }

        .card-response {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .response-radio {
            display: none;
        }

        .response-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 18px;
            border: 2px solid #d0d8e0;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            background: white;
            color: var(--text);
            min-width: 90px;
            position: relative;
            flex: 1;
            max-width: 120px;
        }

        .response-btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .response-btn span {
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        /* YES BUTTON */
        .yes-btn {
            color: #2d7a4a;
        }

        .yes-btn:hover {
            border-color: #4ade80;
            background: #f0fdf4;
        }

        .response-radio:checked + .yes-btn {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            border-color: #15803d;
            color: white;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }

        /* NO BUTTON */
        .no-btn {
            color: #b91c1c;
        }

        .no-btn:hover {
            border-color: #f87171;
            background: #fef2f2;
        }

        .response-radio:checked + .no-btn {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border-color: #7f1d1d;
            color: white;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        @media (max-width: 768px) {
            .competency-grid {
                gap: 12px;
            }

            .competency-card {
                padding: 16px;
            }

            .card-question {
                font-size: 14px;
                margin-bottom: 14px;
            }

            .response-btn {
                padding: 12px 14px;
                font-size: 13px;
                min-width: auto;
                max-width: none;
                flex: 1;
            }

            .response-btn svg {
                width: 16px;
                height: 16px;
            }
        }

    
        .washburn-print-summary {
            display: none;
            margin-top: 28px;
            padding: 18px 20px;
            border: 2px dashed #aab7c6;
            border-radius: 8px;
            background: #fafcff;
        }
        .washburn-print-summary h3 {
            margin: 0 0 6px 0;
            font-size: 16px;
            color: var(--wu-blue);
        }
        .washburn-print-summary .summary-note {
            margin: 0 0 14px 0;
            font-size: 12px;
            color: #5d6b79;
            font-style: italic;
        }
        .summary-stack {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .summary-line {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 10px;
            align-items: start;
            padding: 6px 0;
            border-bottom: 1px solid #d9e2ec;
            font-size: 13px;
        }
        .summary-line:last-child { border-bottom: none; }
        .summary-label {
            font-weight: 700;
            color: var(--wu-blue);
        }
        .summary-value {
            color: var(--text);
            min-height: 1.2em;
        }
        @media screen {
            .washburn-print-summary { display: none !important; }
        }
        @media print {
            .washburn-print-summary {
                display: block !important;
                break-inside: avoid;
                page-break-inside: avoid;
                margin-top: 22px;
                background: #fff !important;
                border: 1px solid #aab7c6 !important;
            }
            .summary-line {
                grid-template-columns: 220px 1fr;
                font-size: 11px;
                padding: 4px 0;
            }
            .hide-on-print-summary {
                display: none !important;
            }
        }

    
        /* ── PRINT SUMMARY PAGING FIX ── */
        .internal-summary-print {
            margin-top: 24px;
            border: 2px solid var(--wu-blue);
            border-radius: 8px;
            padding: 20px 22px;
            background: #fafcff;
        }
        .internal-summary-print h3 {
            margin: 0 0 8px 0;
            color: var(--wu-blue);
            font-size: 20px;
            line-height: 1.2;
        }
        .internal-summary-print p {
            margin: 0 0 14px 0;
            color: var(--text-light);
            font-size: 13px;
            line-height: 1.45;
        }
        .internal-summary-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .internal-summary-item {
            padding: 6px 0;
            border-bottom: 1px solid #d9e2ec;
            font-size: 14px;
            line-height: 1.35;
            break-inside: avoid;
            page-break-inside: avoid;
        }
        .internal-summary-item strong {
            display: inline-block;
            min-width: 260px;
            color: var(--wu-blue);
        }

        @media print {
            .program-spreadsheet-summary,
            .spreadsheet-panel,
            .btn-copy,
            .copy-row-wrap,
            .copy-row,
            .tab-separated-row,
            .tab-separated-headers {
                display: none !important;
            }

            .internal-summary-print {
                break-before: page;
                page-break-before: always;
                break-inside: avoid;
                page-break-inside: avoid;
                margin-top: 0 !important;
                padding: 14px 16px !important;
                border-width: 1.5px !important;
                background: #ffffff !important;
            }
            .internal-summary-print h3 {
                font-size: 16px !important;
                margin-bottom: 6px !important;
            }
            .internal-summary-print p {
                font-size: 10px !important;
                margin-bottom: 10px !important;
            }
            .internal-summary-list {
                gap: 0 !important;
            }
            .internal-summary-item {
                font-size: 10.5px !important;
                padding: 4px 0 !important;
            }
            .internal-summary-item strong {
                min-width: 190px !important;
            }
        }
/************************ EXTRA WU STYLES ********************************/
#internalSummaryPrint {display:none;}
@media print {
   #fix, .interior-bg, .breadcrumb, .shadows, section.container-fluid, #get_in_touch, footer.footerBg {display:none;}
    #internalSummaryPrint {display:block;}
}