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

        body {
            font-family: var(--font-family-primary);
            font-weight: var(--font-weight-normal);
            background: var(--bg-body);
            color: var(--text-primary);
            /*font-size: 20px;*/
            min-height: 100vh;
            /* Prevent pull-to-refresh on mobile */
            overscroll-behavior-y: contain;
            touch-action: pan-y;
            transition: background var(--transition-speed), color var(--transition-speed);
        }

        /* Issue #84: Standardized header sizes per fonts4 specification */
       
        @media (max-width: 768px) {
            body {
            }

            .stage-badge {
            }
        }

        /* ============================================
           THEME SYSTEM - Fallback CSS Variables Only
           Issue #79: All themes loaded dynamically from database
           ============================================ */

        /* Minimalist fallback - only used if database load fails */
        :root {
            /* Typography */
            --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            --font-family-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-family-mono: 'Courier New', Consolas, monospace;
            --font-weight-normal: 400;
            --font-weight-bold: 600;
            --text-shadow: none;

            /* Color Palette - 7 Semantic Colors (Issue #79) */
            --color-primary: #2f2a60;
            --color-secondary: #858585;
            --color-accent: #afd4fd;
            --color-background: #f5f5f5;
            --color-surface: #ffffff;
            --color-text: #212529;
            --color-border: #dee2e6;

            /* Backgrounds - Derived from 7 semantic colors */
            --bg-body: var(--color-background);
            --bg-container: var(--color-surface);
            --bg-section: var(--color-surface);
            --bg-section-alt: var(--color-surface);
            --bg-header: var(--color-surface);
            --bg-client-summary: var(--color-primary);
            --bg-status-bar: var(--color-primary);
            --bg-button: var(--color-primary);
            --bg-button-secondary: var(--color-secondary);  /* Issue #79: Use secondary for distinction in flat themes */
            --bg-button-hover: #4a4580;
            --bg-input: var(--color-surface);
            --bg-debug: var(--color-surface);
            --bg-debug-header: var(--color-background);
            --bg-debug-code: var(--color-surface);
            --bg-table-header: var(--color-background);
            --bg-table-row: var(--color-surface);
            --bg-table-row-alt: var(--color-background);
            --bg-badge: var(--color-accent);
            --bg-tag: var(--color-accent);
            --bg-card: var(--color-surface);
            --bg-spinner: var(--color-primary);

            /* Text Colors - Derived from 7 semantic colors */
            --text-primary: var(--color-text);
            --text-secondary: var(--color-secondary);
            --text-muted: #9ca3af;
            --text-inverse: #ffffff;
            --text-link: var(--color-primary);
            --text-heading: var(--color-primary);
            --text-button: #ffffff;
            --text-debug: var(--color-text);
            --text-tag: var(--color-primary);

            /* Borders - Derived from 7 semantic colors */
            --border-color: var(--color-border);
            --border-color-input: var(--color-border);
            --border-color-section: var(--color-accent);
            --border-color-debug: var(--color-border);
            --border-color-table: var(--color-border);
            --border-width: 1px;
            --border-style: solid;
            --border-radius: 10px;
            --border-radius-sm: 8px;
            --border-radius-lg: 20px;

            /* Shadows */
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
            --shadow-button: none;
            --shadow-container: 0 20px 60px rgba(0, 0, 0, 0.3);
            --shadow-glow: none;

            /* Gradients - Derived from 7 semantic colors */
            --gradient-primary: var(--color-primary);
            --gradient-button: var(--color-primary);
            --gradient-header: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary) 100%);

            /* Special */
            --spinner-color: var(--color-primary);
            --transition-speed: 0.2s;
        }

        /* ============================================
           THEME-SPECIFIC SPECIAL STYLING - Issue #71
           ============================================ */

        .container {
            background: var(--bg-container);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-container);
            max-width: 1200px;
            margin: 20px auto;
            padding: 50px; /* Issue #96: Moved from inputSection */
            transition: all var(--transition-speed);
        }

        @media (max-width: 768px) {
            .container {
                border-radius: var(--border-radius);
            }
        }

        /* Issue #8: Sticky header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--bg-header);
            color: var(--text-heading);
            z-index: 100;
            box-shadow: var(--shadow-sm);
            padding: 6px 12px; /* 30% of typical 20px/40px padding */
            transition: all var(--transition-speed);
        }

        /* Mobile-responsive header grid layout with logo on right */
        .header-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header-stack {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        /* Row 1: MAESTRO v... | Code | Client Profile */
        .header-row-1 {
            display: flex;
            align-items: baseline; /* Align text baselines */
            gap: 12px;
            flex-wrap: wrap;
        }

        /* H1 in header - let it use global h1 styling naturally */
        .header-stack h1 {
            margin: 0;
            line-height: 1;
        }

        /* Universal small text utility - for metadata, version, code, table details */
        .small-text {
            /* Issue #96: Removed hardcoded font-size - use CSS variables only */
            color: var(--text-secondary);
            font-weight: 400;
            white-space: normal; /* Changed from nowrap to allow text wrapping on mobile */
        }

        /* Links use normal text size unless specifically .small-text */
        .header-row-1 a {
            color: var(--color-primary);
            text-decoration: underline;
            cursor: pointer;
        }

        .header-row-1 a:hover {
            opacity: 0.8;
        }

        /* Separators use text secondary color */
        .header-row-1 > span:not(.small-text) {
            color: var(--text-secondary);
            opacity: 0.5;
        }

        /* Row 2: Theme selector (plenty of room) - use heading font */
        .header-row-2 {
            display: flex;
            align-items: center;
        }

        .theme-selector {
            min-width: 200px;
            border: 2px solid var(--border-color);
            background: var(--bg-input);
            color: var(--text-primary);
            cursor: pointer;
            font-family: var(--font-family-heading);
        }

        .theme-selector option {
            font-family: var(--font-family-heading);
        }

        /* Logo on right - full vertical height with padding */
        .header-logo-container {
            display: flex;
            align-items: center;
        }

        .header-logo {
            height: 100%;
            width: auto;
            max-height: 70px; /* Height for 2 rows + gaps */
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .site-header {
            }

            .header-grid {
                gap: 12px;
            }

            .header-row-1 {
                gap: 8px;
            }

            /* H1 naturally responsive via global rules */
            /* .small-text automatically scales */

            .theme-selector {
                min-width: 150px;
                /* Issue #96: Removed hardcoded font-size */
            }

            .theme-selector option {
                /* Issue #96: Removed hardcoded font-size */
            }

            .header-logo {
                max-height: 55px;
            }
        }

        /* Issue #8: Sticky client profile */
        #clientSummary {
            position: fixed;
            top: 85px; /* Below header */
            left: 0;
            right: 0;
            z-index: 99;
            box-shadow: var(--shadow-sm);
            background: var(--color-primary); /* Issue #79: Use primary color from theme */
            color: white;
            transition: all var(--transition-speed);
        }

        #clientSummary .client-summary-inner {
            max-width: 1200px
            margin: 0 auto;
        }

        #clientSummary .client-profile-title {
            mix-blend-mode: difference; 
            margin-bottom: 5px;
        }

        #clientSummaryText {
            color: white;
            font-weight: 500;
            line-height: 1.4;
        }

        #clientSummary .status-section {
            display: none;
            margin-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.3);
            align-items: center;
            gap: 12px;
        }

        #clientSummary .status-section.show {
            display: flex;
        }

        @media (max-width: 768px) {
            #clientSummary {
                top: 70px;
            }

            #clientSummary .client-profile-title {
                margin-bottom: 3px !important;
            }
        }

        /* Removed .maestro-title - using semantic h1 instead */

        /* Issue #84: Summary headings use H1 size (2.3em per fonts4 spec) */
        /* Issue #85: Use CSS variable for em value (can be overridden per-theme) */
        summary {
            cursor: pointer;
            font-weight: 600;
            font-size: var(--em-h1);
            color: var(--text-primary);
        }

        @media (max-width: 768px) {
            summary {
                /* Issue #96: Removed hardcoded font-size */
            }
        }

        .stage-badge {
            background: var(--bg-badge);
            color: var(--text-inverse);
            border-radius: var(--border-radius-lg);
            display: inline-block;
            margin-left: 10px;
            transition: all var(--transition-speed);
        }

        /* Issue #87: Use theme colors for textareas (surface + text) */
        textarea {
            width: 100%;
            border: none; /* Remove border per feedback */
            padding: 5px; /* Add 5px padding per feedback */
            font-family: inherit;
            font-weight: var(--font-weight-normal);
            resize: vertical;
            min-height: 100px;
            background: var(--color-surface);
            color: var(--color-text);
        }

        /* Issue #96: Removed padding from inputSection - now on .container */
        #inputSection {
        }

        textarea::placeholder {
            color: var(--text-body);
            opacity: .7;
        }

        button {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: var(--border-radius); /* Issue #96: Match container border radius */
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        @media (max-width: 768px) {
            button {
                width: 100%;
            }

            /* C1 buttons should stack vertically on mobile */
            #c1-buttons {
                flex-direction: column !important;
            }

            #c1-buttons button {
                width: 100% !important;
            }

            /* C2 bottom buttons should stack vertically on mobile */
            #c2-bottom-buttons {
                flex-direction: column !important;
            }

            #c2-bottom-buttons button {
                width: 100% !important;
            }

            /* C2 header button should be full width on mobile */
            #stage5Details summary {
                flex-direction: column !important;
                gap: 10px !important;
            }

            #headerAskAIBtn {
                width: 100% !important;
                margin-top: 10px !important;
            }
        }

        button:hover:not(:disabled) {
            transform: translateY(-2px);
        }

        button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* ============================================
           HIERARCHICAL STRUCTURE - Section/Subsection/Artefact
           ============================================ */

        /* Sections - H1 titles, primary color, collapsible */
        .section {
            margin: 20px 0;
            background: var(--color-surface);
            border-radius: var(--border-radius);
            border-left: 8px solid var(--color-primary);
            overflow: hidden;
        }

        .section-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--color-surface);
            padding: 9px 12px; /* 30% of typical 30px/40px padding */
            user-select: none;
            transition: background 0.2s;
        }

        .section-header:hover {
            background: color-mix(in srgb, var(--color-surface) 95%, var(--color-primary));
        }

        .section-header h1 {
            margin: 0;
            color: var(--color-primary);
        }

        .section-header h1[style*="flex: 1"] {
            flex: 1;
        }

        /* Section header text spans (replacing h1 tags) */
        .section-header-text {
            margin: 0;
            color: var(--color-primary);
            font-family: var(--font-family-heading);
            font-size: var(--em-h1);
            font-weight: var(--font-weight-bold);
        }

        .section-arrow {
            /* Issue #96: Removed hardcoded font-size */
            color: var(--color-primary);
            transition: transform 0.3s;
            display: inline-block;
            min-width: 20px;
        }

        .section-arrow.collapsed {
            transform: rotate(-90deg);
        }

        .section-content {
            display: block;
            padding: 12px; /* 30% of typical 40px padding */
        }

        .section-content.collapsed {
            display: none;
        }

        /* Subsections - H2 titles, secondary color, collapsible, with border */
        .subsection {
            margin: 15px 0;
            border: 2px solid var(--color-border);
            border-radius: var(--border-radius);
            background: var(--color-surface);
            overflow: hidden;
        }

        .subsection-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            border: none;
            border-radius: var(--border-radius);
            background: var(--color-surface);
            user-select: none;
            transition: background 0.2s;
        }

        .subsection-header:hover {
            background: color-mix(in srgb, var(--color-surface) 95%, var(--color-secondary));
        }

        .subsection-header h2 {
            margin: 0;
            color: var(--color-secondary);
            flex: 1;
        }

        /* Subsection header text spans (replacing h2 tags) */
        .subsection-header-text {
            margin: 0;
            color: var(--color-secondary);
            font-family: var(--font-family-heading);
            font-size: var(--em-h2);
            font-weight: var(--font-weight-bold);
            flex: 1;
            border: none; /* Remove inherited 2px border per feedback */
        }

        .subsection-arrow {
            /* Issue #96: Removed hardcoded font-size */
            color: var(--color-secondary);
            transition: transform 0.3s;
            display: inline-block;
            min-width: 16px;
        }

        .subsection-arrow.collapsed {
            transform: rotate(-90deg);
        }

        .subsection-content {
            display: block;
        }

        .subsection-content.collapsed {
            display: none;
        }

        /* Special subsection for client input - no header, always open */
        .subsection-client-input {
            border: 2px solid var(--color-border);
            border-radius: var(--border-radius);
            background: var(--color-surface);
        }

        .subsection-client-input .subsection-content {
        }

        /* Special subsection for questions - no header, always open, no border */
        .subsection-questions {
            background: transparent;
            border: none;
            margin: 0;
        }

        .subsection-questions .subsection-content {
        }

        /* Artefacts - H3 titles, accent color, different types */
        .artefact {
            margin: 15px 0;
        }

        .artefact-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            user-select: none;
            margin-bottom: 10px;
        }

        .artefact-header h3 {
            margin: 0;
            color: var(--color-accent);
            flex: 1;
        }

        /* Artefact header text spans (replacing h3 tags) */
        .artefact-header-text {
            margin: 0;
            color: var(--color-primary); /* Change to primary color per feedback */
            font-family: var(--font-family-heading);
            font-size: var(--em-h3);
            font-weight: var(--font-weight-bold);
            flex: 1;
        }

        .artefact-arrow {
            /* Issue #96: Removed hardcoded font-size */
            color: var(--color-accent);
            transition: transform 0.3s;
            display: inline-block;
            min-width: 14px;
        }

        .artefact-arrow.collapsed {
            transform: rotate(-90deg);
        }

        .artefact-content {
            display: block;
        }

        .artefact-content.collapsed {
            display: none;
        }

        /* Artefact separator line (50% width, border color) */
        .artefact + .artefact {
            border-top: 1px solid var(--color-border);
        }

        /* Artefact type: Text */
        .artefact.artefact-text h3 {
            color: var(--color-accent);
        }

        .artefact.artefact-text .artefact-content {
            color: var(--color-text);
            line-height: 1.6;
        }

        /* Artefact type: List */
        .artefact.artefact-list ul,
        .artefact.artefact-list ol {
            margin-left: 0;
        }

        .artefact.artefact-list li {
            margin-bottom: 8px;
            color: var(--color-text);
        }

        /* Low-content tables - header row in primary color */
        .low-content-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }

        .low-content-table thead tr {
            background: var(--color-primary);
        }

        .low-content-table thead th {
            text-align: left;
            color: white;
            font-weight: 600;
        }

        .low-content-table tbody tr {
            background: var(--color-surface);
        }

        .low-content-table tbody tr:nth-child(even) {
            background: color-mix(in srgb, var(--color-surface) 80%, var(--color-primary) 20%);
        }

        .low-content-table tbody td {
            border-bottom: 1px solid var(--color-border);
            color: var(--color-text);
        }

        /* High-content tables - header column in secondary color, no header row */
        .high-content-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }

        .high-content-table tr {
            background: var(--color-surface);
        }

        .high-content-table tr:nth-child(even) {
            background: color-mix(in srgb, var(--color-surface) 80%, var(--color-secondary) 20%);
        }

        .high-content-table td:first-child {
            text-align: left;
            background: var(--color-secondary);
            color: white;
            font-weight: 600;
            width: 200px;
            max-width: 200px;
            word-wrap: break-word;
            vertical-align: top;
        }

        .high-content-table td:last-child {
            border-bottom: 1px solid var(--color-border);
            color: var(--color-text);
        }

        /* Use .small-text for artifacts/metadata in tables */
        .high-content-table .small-text {
            display: block;
            margin-top: 8px;
        }

        /* Issue #84: Section titles use H2 size (2em per fonts4 spec) */
        /* Issue #85: Use CSS variable for em value (can be overridden per-theme) */
        .section-title {
            font-size: var(--em-h2);
            font-weight: var(--font-weight-bold);
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .analysis-card {
            background: var(--bg-card);
            border-radius: var(--border-radius-sm);
            border: var(--border-width) solid var(--border-color);
        }

        .analysis-label {
            font-weight: var(--font-weight-bold);
            color: var(--text-link);
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .analysis-value {
            color: var(--text-primary);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        table th, table td {
            text-align: left;
            border-bottom: var(--border-width) solid var(--border-color-table);
        }

        table th {
            background: var(--color-primary); /* Issue #79: Primary color for table headers */
            font-weight: var(--font-weight-bold);
            color: white; /* White text on primary background */
        }

        .agent-card {
            background: var(--bg-card);
            border-radius: var(--border-radius-sm);
            margin: 10px 0;
            border: var(--border-width) solid var(--border-color);
        }

        /* Issue #11: A2 section mobile responsiveness */
        @media (max-width: 768px) {
            #stage2 table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            #stage2 table th,
            #stage2 table td {
                white-space: nowrap;
            }
        }

        .question {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            border: var(--border-width) solid var(--border-color);
        }

        .question-number {
            color: var(--text-link);
            font-weight: var(--font-weight-bold);
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .question {
                margin-bottom: 10px;
            }

        }

        .tag {
            display: inline-block;
            background: var(--bg-tag);
            color: var(--text-tag);
            border-radius: 15px;
            margin: 2px;
        }

        .loading {
            text-align: center;
            color: var(--text-secondary);
        }

        /* Hide the loading text in sections since we show it in the overlay */
        .loading span {
            display: none;
        }

        .spinner {
            border: 3px solid var(--border-color-input);
            border-top: 3px solid var(--spinner-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hidden {
            display: none;
        }

        /* Issue #70: Sticky status bar (replaces blocking overlay) */
        .status-bar {
            /* DEPRECATED: Merged into #clientSummary */
            display: none !important;
        }

        .status-bar.show {
            display: flex;
        }

        .status-bar-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid var(--shadow-glow-color);
            border-top: 2px solid var(--text-inverse);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            flex-shrink: 0;
        }

        .status-bar-content {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .status-bar-stage {
            font-weight: 600;
        }

        .status-bar-text {
            opacity: 0.9;
        }

        .status-bar-progress {
            opacity: 0.8;
            margin-left: auto;
        }

        @media (max-width: 768px) {
            .status-bar {
                top: 140px;
                height: 45px;
            }

            .status-bar-content {
                gap: 8px;
            }
        }

        /* Issue #70: Section states for progressive reveal */
        .section-pending {
            opacity: 0.5;
            pointer-events: none;
            position: relative;
        }

        /* Issue #87: Use theme colors instead of hardcoded colors */
        .section-pending::before {
            content: "Waiting for previous stages...";
            display: block;
            background: var(--color-surface);
            border-radius: 8px;
            margin: 10px 0;
            color: var(--color-text);
            opacity: 0.7;
        }

        .section-loading {
            position: relative;
        }

        .section-complete {
            position: relative;
        }

        .section-complete > details > summary::before {
            content: "";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-color);
            color: white;
            font-weight: bold;
            margin-right: 8px;
        }

        .debug-section {
            margin: 15px 0;
            border: var(--border-width) solid var(--border-color-debug);
            border-radius: var(--border-radius-sm);
            background: var(--bg-debug);
        }

        .debug-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-debug-header);
            border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
            font-weight: var(--font-weight-bold);
            color: var(--text-debug);
            user-select: none;
        }

        .debug-header:hover {
            opacity: 0.9;
        }

        .debug-arrow {
            transition: transform 0.2s;
        }

        .debug-arrow.open {
            transform: rotate(90deg);
        }

        .debug-content {
            display: none;
            background: var(--bg-debug-code);
            border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
        }

        .debug-content.show {
            display: block;
        }

        .debug-label {
            font-weight: var(--font-weight-bold);
            color: var(--text-link);
            margin: 15px 0 5px 0;
            text-transform: uppercase;
        }

        .debug-code {
            background: var(--bg-debug-code);
            color: var(--text-primary);
            border: var(--border-width) solid var(--border-color-debug);
            border-radius: var(--border-radius-sm);
            overflow-x: auto;
            font-family: var(--font-family-mono);
            white-space: pre-wrap;
            word-wrap: break-word;
            max-height: 400px;
            overflow-y: auto;
        }

        /* Mobile responsiveness for allocation tables (A7) */
        @media (max-width: 768px) {
            .section {
            }

            .section-title {
                /* Issue #96: Removed hardcoded font-size */
            }

            /* A7 Portfolio grid should stack on mobile */
            #stage8 [style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }

            /* Make allocation bars more compact */
            #stage8 [style*="display: flex"] {
                flex-wrap: wrap;
            }

            #stage8 [style*="display: flex"] span:first-child {
                width: 100%;
                margin-bottom: 5px;
            }

            /* Issue #84: Removed hardcoded mobile font-sizes - use default responsive sizing */

            #stage5 .section {
            }

            #stage5-content {
            }

            /* A6 (stage7) - mobile responsive */
            #stage7 .agent-card {
            }
        }

        /* Modal for client profile */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            margin: 20px;
        }

        .modal-close {
            margin-top: 20px;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }

        /* Floating status box (bottom-right) */
        .floating-status {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--color-primary);
            color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            /* Issue #96: Removed hardcoded font-size */
            max-width: 300px;
            z-index: 9999;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .floating-status:hover {
            opacity: 0.9;
        }
