
        :root {
            --bg-color: #f0f2f5;
            --sidebar-bg: #ffffff;
            --card-bg: #ffffff;
            --border-color: #e4e8ef;
            --text-main: #1a2233;
            --text-muted: #7a8a9e;
            --sidebar-width: 88px;
            
            /* Color Schemes per Principle */
            --fair-color: #e8a800;
            --fair-bg: rgba(232, 168, 0, 0.12);

            --good-color: #22a06b;
            --good-bg: rgba(34, 160, 107, 0.12);

            --safe-color: #2563eb;
            --safe-bg: rgba(37, 99, 235, 0.12);

            --understandable-color: #7c3aed;
            --understandable-bg: rgba(124, 58, 237, 0.12);

            --primary: #2563eb;
            --primary-light: rgba(37, 99, 235, 0.08);
            --success: #22a06b;
            --warning: #e8a800;
            --danger: #ef4444;
        }

        /* Dashboard tabs bar */
        .dash-tabs-bar {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 4px;
            scrollbar-width: thin;
        }
        .dash-tab {
            padding: 8px 16px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            color: #475569;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
        .dash-tab:hover {
            background: #f1f5f9;
            color: #0f6cbf;
            border-color: #cbd5e1;
        }
        .dash-tab.active {
            background: #0f6cbf;
            color: #ffffff;
            border-color: #0f6cbf;
            box-shadow: 0 2px 6px rgba(15, 108, 191, 0.25);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: var(--bg-color);
            overflow-x: hidden;
            max-width: 100%;
            width: 100%;
        }

        body {
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            font-size: 13px;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--text-main);
        }

        /* Dashboard Layout */
        .app-layout {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar Navigation */
        .sidebar {
            width: var(--sidebar-width);
            background: var(--sidebar-bg);
            border-right: 1px solid var(--border-color);
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0 24px;
            flex-shrink: 0;
            position: sticky;
            top: 0;
            height: 100vh;
            z-index: 100;
            box-shadow: 2px 0 8px rgba(0,0,0,0.04);
        }

        .sidebar-logo {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            margin-bottom: 32px;
            box-shadow: 0 4px 12px rgba(37,99,235,0.3);
        }

        .sidebar-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex-grow: 1;
            width: 100%;
            padding: 0 10px;
        }

        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            padding: 10px 6px;
            border-radius: 10px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 10px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-align: center;
            line-height: 1.2;
        }

        .menu-item svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .menu-item:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .menu-item.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .sidebar-footer {
            padding: 0 10px;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }

        /* Main Content area */
        .content-area {
            flex-grow: 1;
            padding: 24px 28px;
            overflow-y: auto;
            min-width: 0;
        }

        /* Questionnaire cards */
        .wizard-container {
            max-width: 800px;
            margin: 40px auto;
        }

        /* Steps Indicator */
        .steps-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .steps-bar::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border-color);
            z-index: 1;
        }

        .step-node {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            color: var(--text-muted);
        }

        .step-node.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
        }

        .step-node.completed {
            background: var(--success);
            border-color: var(--success);
            color: white;
        }

        .step-label {
            position: absolute;
            top: 48px;
            font-size: 11px;
            white-space: nowrap;
            color: var(--text-muted);
            font-weight: 600;
        }

        .step-node.active .step-label {
            color: var(--text-main);
        }

        /* Glass Cards */
        .dashboard-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        }

        /* Header elements */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .header-title h1 {
            font-size: 22px;
            margin-bottom: 4px;
        }

        .header-title p {
            color: var(--text-muted);
            font-size: 12px;
        }

        .user-profile-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            padding: 8px 14px 8px 10px;
            border-radius: 10px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            cursor: pointer;
            transition: box-shadow 0.2s ease;
        }

        .user-profile-badge:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #e8edf5;
            color: #6b7d9a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

        .avatar svg {
            width: 20px;
            height: 20px;
        }

        /* Form styling */
        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        input[type="text"], select {
            width: 100%;
            padding: 10px 14px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        input[type="text"]:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .btn {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn:hover {
            opacity: 0.95;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: #ffffff;
            border: 1px solid var(--border-color);
            color: var(--text-main);
        }

        .btn-secondary:hover {
            background: #f1f5f9;
        }

        .btn-disabled {
            background: #e2e8f0;
            color: #94a3b8;
            cursor: not-allowed;
            border: none;
        }

        .btn-disabled:hover {
            transform: none;
        }

        /* 100 points bar */
        .points-tracker {
            background: #f7f9fc;
            border: 1px solid var(--border-color);
            padding: 14px 20px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .points-bar-bg {
            flex-grow: 1;
            height: 6px;
            background: #dde2ec;
            border-radius: 3px;
            margin: 0 20px;
            overflow: hidden;
        }

        .points-bar-fill {
            height: 100%;
            background: var(--primary);
            width: 0%;
            transition: width 0.3s ease;
        }

        .points-bar-fill.valid {
            background: var(--success);
        }

        .points-bar-fill.invalid {
            background: var(--danger);
        }

        /* Skills grid list */
        .skills-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media(min-width: 768px) {
            .skills-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .skill-allocation-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .skill-label-text {
            font-size: 14px;
            font-weight: 600;
        }

        .skill-principle-badge {
            font-size: 9px;
            padding: 2px 8px;
            border-radius: 10px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .badge-fair { background: var(--fair-bg); color: var(--fair-color); }
        .badge-good { background: var(--good-bg); color: var(--good-color); }
        .badge-safe { background: var(--safe-bg); color: var(--safe-color); }
        .badge-understandable { background: var(--understandable-bg); color: var(--understandable-color); }

        .slider-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .slider-container input[type="range"] {
            flex-grow: 1;
            height: 4px;
            border-radius: 2px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .points-input {
            width: 50px;
            padding: 4px;
            border-radius: 4px;
            background: #f8fafc;
            border: 1px solid var(--border-color);
            color: #0f172a;
            text-align: center;
            font-weight: 700;
            font-size: 13px;
        }

        /* Likert Scale radio circles */
        .likert-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8fafc;
            padding: 6px 12px;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
        }

        .likert-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            gap: 4px;
        }

        .likert-radio {
            appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid #cbd5e1;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .likert-radio:checked {
            border-color: var(--primary);
            background: var(--primary);
        }

        .likert-radio::after {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            display: none;
        }

        .likert-radio:checked::after {
            display: block;
        }

        .likert-label {
            font-size: 9px;
            color: var(--text-muted);
            font-weight: bold;
        }

        /* GRID FOR 6 DASHBOARD MODULES */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        /* Tablet Layout */
        @media(min-width: 768px) and (max-width: 1023px) {
            .dashboard-grid {
                grid-template-columns: 1fr 1fr;
            }
            .span-2 {
                grid-column: span 2;
            }
            .span-3 {
                grid-column: span 2;
            }
        }

        /* Desktop Layout */
        @media(min-width: 1024px) {
            .dashboard-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .span-2 {
                grid-column: span 2;
            }
            .span-3 {
                grid-column: span 3;
            }
        }

        /* Module 1: DR Readiness circular gauge */
        .readiness-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-top: 12px;
        }

        .readiness-score-block {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .score-huge {
            font-size: 38px;
            font-weight: 800;
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            line-height: 1;
        }

        .score-huge span {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .tier-badge {
            padding: 3px 10px;
            border-radius: 5px;
            font-size: 11px;
            font-weight: 700;
            display: inline-block;
            width: fit-content;
        }

        .tier-beginner { background: rgba(239,68,68,0.1); color: var(--danger); }
        .tier-intermediate { background: rgba(232,168,0,0.15); color: var(--warning); }
        .tier-advanced { background: rgba(34,160,107,0.12); color: var(--success); }

        .radial-gauge {
            position: relative;
            width: 110px;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .radial-gauge svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .radial-gauge circle {
            fill: none;
            stroke-width: 9;
        }

        .circle-bg { stroke: #edf0f5; }
        .circle-fill {
            stroke: var(--warning);
            stroke-linecap: round;
            transition: stroke-dashoffset 0.8s ease;
        }

        .circle-text {
            position: absolute;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            text-align: center;
            line-height: 1;
        }

        .baseline-label {
            font-size: 10px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 4px;
        }

        /* Module 2: Personal Insight lightbulb card */
        .insight-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .insight-icon-wrap {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: rgba(232, 168, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Module 3: Market Snapshot list */
        .market-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .market-icon-wrap {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .snapshot-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .snapshot-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f7f9fc;
            border: 1px solid var(--border-color);
            padding: 10px 12px;
            border-radius: 8px;
        }

        .snapshot-icon {
            width: 32px;
            height: 32px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .snapshot-num {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            line-height: 1;
        }

        .snapshot-label {
            font-size: 10px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 2px;
        }

        /* Module 5: Priority ranking bars */
        .rank-bar-row {
            display: grid;
            grid-template-columns: 20px 28px 1fr 36px;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .rank-bar-bg {
            height: 9px;
            background: #edf0f5;
            border-radius: 5px;
            overflow: hidden;
        }

        .rank-bar-fill {
            height: 100%;
            border-radius: 5px;
        }

        /* Module 6: Principle Cards Grid (4 columns) */
        .principle-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media(min-width: 640px) {
            .principle-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(min-width: 1024px) {
            .principle-cards-grid {
                grid-template-columns: 1fr 1fr 1fr 1fr;
            }
        }

        .principle-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .p-card-header-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .p-card-icon {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            flex-shrink: 0;
        }

        .p-card-title {
            font-size: 14px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
        }

        .p-card-score-row {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .p-card-score {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            line-height: 1;
        }

        .p-card-score-suffix {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .relevance-tag {
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
            display: inline-block;
        }

        .p-card-desc {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 14px;
        }

        .skill-dot-list-header {
            font-size: 10px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 8px;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }

        /* 1-5 dot representation */
        .skill-dot-list {
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-bottom: 16px;
            flex: 1;
        }

        .skill-dot-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
        }

        .skill-dot-name {
            color: var(--text-main);
            flex: 1;
            margin-right: 8px;
        }

        .dots-with-score {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .dots-container {
            display: flex;
            gap: 3px;
        }

        .dots-container .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .dots-container .dot.filled-fair { background-color: var(--fair-color); }
        .dots-container .dot.filled-good { background-color: var(--good-color); }
        .dots-container .dot.filled-safe { background-color: var(--safe-color); }
        .dots-container .dot.filled-understandable { background-color: var(--understandable-color); }
        .dots-container .dot.empty { background-color: #dde2ec; }

        .dot-score-label {
            font-size: 10px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .next-skill-box {
            background: #f7f9fc;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: auto;
        }

        .next-skill-box:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .next-skill-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .next-skill-label {
            font-size: 9px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .next-skill-name {
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            color: var(--text-main);
            font-size: 12px;
        }

        .next-skill-demand {
            font-size: 9px;
            color: var(--text-muted);
            margin-top: 1px;
        }

        /* Personalized Learning Journey timeline */
        .timeline-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 72px;
            text-align: center;
        }

        .timeline-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
            color: white;
            border: 3px solid #ffffff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.12);
            margin-bottom: 7px;
            transition: all 0.2s ease;
        }

        .node-highest { background-color: var(--success); }
        .node-next { background-color: var(--warning); }
        .node-grow { background-color: var(--safe-color); }
        .node-strong { background-color: #94a3b8; }

        .timeline-circle:hover { transform: scale(1.12); }

        .timeline-label {
            font-size: 10px;
            font-weight: 500;
            color: var(--text-main);
            max-width: 68px;
            line-height: 1.3;
        }

        .timeline-legend {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .legend-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }

        /* Gaps table */
        .table-responsive {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        th {
            padding: 12px 16px;
            border-bottom: 2px solid var(--border-color);
            color: var(--text-muted);
            text-transform: uppercase;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-align: left;
        }

        td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-color);
        }

        tr:hover td {
            background-color: #f8fafc;
        }

        .status-pill {
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .gap-pos { color: var(--success); font-weight: bold; }
        .gap-neg { color: var(--warning); font-weight: bold; }

        /* Loader */
        .spinner {
            border: 3px solid rgba(0, 0, 0, 0.05);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border-left-color: var(--primary);
            animation: spin 0.8s linear infinite;
            margin: 40px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hidden {
            display: none !important;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .app-layout {
                flex-direction: column;
            }

            /* Bottom navigation bar on mobile */
            .sidebar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                top: auto;
                height: 64px;
                width: 100%;
                flex-direction: row;
                justify-content: space-around;
                align-items: center;
                padding: 0;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
                border-right: none;
                border-top: 1px solid var(--border-color);
                z-index: 1000;
            }

            .sidebar-logo {
                display: none !important;
            }

            .sidebar-menu {
                flex-direction: row;
                justify-content: space-around;
                width: 100%;
                height: 100%;
                padding: 0;
                gap: 0;
                align-items: center;
            }

            .sidebar-menu li {
                flex: 1;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .menu-item {
                flex-direction: column;
                justify-content: center;
                gap: 4px;
                padding: 6px 0;
                height: 100%;
                border-radius: 0;
                font-size: 9px;
            }

            .menu-item svg {
                width: 18px;
                height: 18px;
            }

            .sidebar-footer {
                display: none !important;
            }

            /* Adjust main content padding and add bottom padding to prevent overlap with bottom nav */
            .content-area {
                padding: 16px 16px 80px 16px;
            }

            /* Main Header adjustments */
            .main-header {
                flex-direction: column;
                gap: 16px;
                align-items: stretch;
            }

            .user-profile-badge {
                width: 100%;
                justify-content: space-between;
                box-sizing: border-box;
            }

            /* Form / Wizard Containers */
            .wizard-container {
                margin: 16px 0;
                padding: 16px;
            }

            .points-tracker {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 16px;
            }

            .points-bar-bg {
                margin: 0;
                height: 8px;
            }

            /* Skills Grid in Questionnaires */
            .skills-grid {
                grid-template-columns: 1fr;
            }

            /* Dashboard Cards Grid */
            .dashboard-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .span-2, .span-3 {
                grid-column: span 1;
            }

            /* Principle breakdown grid */
            .principle-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* Circular gauge alignment on mobile */
            .readiness-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
            }

            .readiness-score-block {
                align-items: center;
            }

            /* Fluid width container rules to prevent horizontal scroll cut-off */
            .app-layout {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }

            .content-area {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
                box-sizing: border-box;
            }

            .dashboard-card {
                padding: 16px;
                width: 100%;
                box-sizing: border-box;
            }

            /* Force long text labels to wrap instead of pushing card width */
            .snapshot-item {
                width: 100%;
                box-sizing: border-box;
            }

            .snapshot-item > div:last-child {
                min-width: 0;
                flex: 1;
            }

            .snapshot-label {
                white-space: normal;
                word-wrap: break-word;
                word-break: break-word;
            }

            p, span, h1, h2, h3 {
                word-wrap: break-word;
                word-break: break-word;
            }

            .skill-dot-name {
                white-space: normal;
                word-break: break-word;
            }
        }

        /* Scrollbar styling for horizontal list */
        .timeline-horizontal-scroll {
            display: flex;
            align-items: flex-start;
            overflow-x: auto;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
        }
        .timeline-horizontal-scroll::-webkit-scrollbar {
            height: 4px;
        }
        .timeline-horizontal-scroll::-webkit-scrollbar-thumb {
            background-color: #cbd5e1;
            border-radius: 2px;
        }

        /* ─── Dashboard Navigation Bar (in iframe & standalone) ─── */
        .dash-nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            border: 1px solid var(--border-color, #e2e8f0);
            border-radius: 12px;
            padding: 14px 18px;
            margin-top: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            grid-column: 1 / -1;
            width: 100%;
            box-sizing: border-box;
        }

        .dash-nav-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 3px;
            flex: 1;
            min-width: 0;
        }

        .dash-nav-badge {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted, #64748b);
        }

        .dash-nav-title {
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .dash-nav-pills {
            display: flex;
            gap: 6px;
            margin-top: 4px;
            align-items: center;
            justify-content: center;
        }

        .dash-nav-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .dash-nav-dot:hover {
            background: #94a3b8;
            transform: scale(1.2);
        }

        .dash-nav-dot.active {
            background: var(--primary, #0f6cbf);
            width: 24px;
            border-radius: 5px;
            cursor: default;
            transform: none;
        }

        @media (max-width: 680px) {
            .dash-nav-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 12px;
            }
            .dash-nav-bar .btn {
                width: 100%;
                justify-content: center;
            }
            .dash-nav-title {
                white-space: normal;
            }
        }

        /* ─── Searchable Select Dropdown (Top 5 + In-Place Search) ─── */
        .searchable-select-wrap {
            position: relative;
            width: 100%;
        }
        .searchable-select-wrap select {
            display: none !important;
        }
        .searchable-trigger {
            width: 100%;
            min-height: 44px;
            padding: 10px 14px;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            color: #1e293b;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s;
            user-select: none;
        }
        .searchable-trigger:hover {
            border-color: #94a3b8;
        }
        .searchable-trigger:focus, .searchable-trigger.open {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
        }
        .searchable-trigger-text {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-weight: 500;
        }
        .searchable-trigger-arrow {
            margin-left: 8px;
            font-size: 11px;
            color: #64748b;
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .searchable-trigger.open .searchable-trigger-arrow {
            transform: rotate(180deg);
        }
        .searchable-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 8px;
            display: none;
        }
        .searchable-dropdown.open {
            display: block;
        }
        .searchable-search-box {
            position: relative;
            margin-bottom: 6px;
        }
        .searchable-search-input {
            width: 100%;
            min-height: 44px;
            padding: 8px 32px 8px 36px;
            font-size: 13px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            outline: none;
            font-family: inherit;
        }
        .searchable-search-input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
        }
        .searchable-search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 13px;
            color: #94a3b8;
            pointer-events: none;
        }
        .searchable-search-clear {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #94a3b8;
            font-size: 16px;
            line-height: 1;
            display: none;
            padding: 4px;
        }
        .searchable-search-clear:hover {
            color: #334155;
        }
        .searchable-badge-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 6px 6px;
            font-size: 11px;
            color: #64748b;
            border-bottom: 1px solid #f1f5f9;
            margin-bottom: 4px;
        }
        .searchable-options-list {
            max-height: 220px;
            overflow-y: auto;
        }
        .searchable-option {
            padding: 10px 12px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 6px;
            font-size: 13px;
            color: #334155;
            cursor: pointer;
            transition: background 0.15s;
            line-height: 1.3;
        }
        .searchable-option:hover, .searchable-option.highlighted {
            background: #f1f5f9;
            color: #0f172a;
        }
        .searchable-option.selected {
            background: #eff6ff;
            color: #2563eb;
            font-weight: 600;
        }
        .searchable-option-meta {
            font-size: 11px;
            color: #64748b;
            margin-left: 8px;
            white-space: nowrap;
        }
        .searchable-empty {
            padding: 16px;
            text-align: center;
            font-size: 13px;
            color: #94a3b8;
        }
    