@media screen and (max-width: 767px) {
    /* Hide redundant desktop onboarding header on mobile - specific to compliance */
    .neo-compliance-page .neo-audit-onboarding {
        display: none !important;
    }

    /* Mobile Context Header Styles - Matching Home Style */
    .mobile-context-header {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0.5rem 0 0 0 !important; /* Removed bottom margin to tighten layout */
        padding: 0 !important;
    }

    .mobile-context-header h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem !important;
        font-weight: 800;
        color: #fff;
    }

    .mobile-context-header h1 span {
        color: var(--gold) !important;
    }

    .mobile-context-header p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: var(--text-dim);
        max-width: 100%;
        margin: 0 auto 0.5rem auto !important;
        text-align: center !important;
    }

    .mobile-context-header p:last-child {
        margin-bottom: 0 !important; /* Let dashboard gap handle the space */
    }

    /* Styles for descriptions moved below input panel */
    .mobile-footer-description {
        display: block !important;
        margin-top: 1.5rem; /* Closer to panel */
        padding-bottom: 0.5rem !important; /* Reduced to pull verdict closer */
    }

    .mobile-footer-description p {
        font-size: 1rem !important; /* Matched to education page */
        line-height: 1.6 !important; /* Matched to education page */
        color: var(--text-dim);
        text-align: justify !important; /* Change back to justify as requested */
        margin-bottom: 0.75rem !important; /* Slightly tighter */
    }

    .mobile-footer-description p:last-child {
        margin-bottom: 0 !important; /* Remove gap before verdict */
    }
    /* Input Panels: Sync with Desktop "Pro" styling exactly */
    .neo-template-panel {
        z-index: 110 !important; /* Higher than input panel to allow dropdown overlayer */
    }

    .neo-input-panel {
        z-index: 100 !important;
    }

    .neo-template-panel,
    .neo-input-panel {
        background: linear-gradient(135deg, 
            rgba(10, 14, 23, 0.85) 0%, 
            rgba(15, 20, 31, 0.8) 40%, 
            rgba(10, 14, 23, 0.85) 100%) !important;
        background-size: 200% 200% !important;
        animation: watery-shift 10s ease-in-out infinite !important;
        backdrop-filter: blur(40px) saturate(220%) !important;
        -webkit-backdrop-filter: blur(40px) saturate(220%) !important;
        
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 20px !important;
        padding: 1.25rem 1rem !important; /* Tightened padding for mobile */
        
        box-shadow: 
            inset 0 1.5px 0.5px rgba(255, 255, 255, 0.3),
            inset 0 -1.5px 0.5px rgba(0, 0, 0, 0.5),
            0 15px 45px rgba(0, 0, 0, 0.6) !important;
        
        margin-bottom: 0.5rem !important; /* Smaller margin, using container gaps for primary spacing */
        width: 100% !important;
        box-sizing: border-box !important;
        position: relative;
        overflow: visible !important;
    }

    /* Form Fields & Label Styling */
    .neo-field {
        margin-bottom: 1.5rem !important;
        overflow: visible !important;
    }

    /* Ensure mb-0 utility works against specific mobile rules */
    .neo-field.mb-0 {
        margin-bottom: 0 !important;
    }

    .neo-field > label,
    .neo-label-row > label {
        display: flex !important;
        align-items: center;
        font-size: 0.8rem !important; /* Increased for mobile legibility */
        font-weight: 800 !important;
        margin-bottom: 0.6rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        line-height: 1.4 !important;
    }

    .neo-label-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 0.2rem !important;
        width: 100% !important;
        gap: 0.3rem !important;
    }

    .neo-input-panel {
        --panel-toggle-unit-width: 2.85rem !important;
    }

    .neo-input-panel .neo-label-row > label {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    /* Help Questions Icon (Exact Desktop Style) */
    .neo-help-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 18px !important;
        height: 18px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
        color: #94a3b8 !important;
        font-size: 0.7rem !important;
        font-weight: 800 !important;
        cursor: pointer !important;
        margin-left: 8px !important;
        transition: all 0.2s !important;
        vertical-align: middle !important;
        position: relative !important;
    }

    .neo-help-btn:hover {
        background: var(--primary) !important;
        color: #0f172a !important;
        border-color: var(--primary) !important;
    }

    .mobile-context-header .neo-help-btn,
    .neo-compliance-page .neo-onboarding-header h3 .neo-help-btn {
        display: none !important;
    }

    /* 1. Toggle Styling (FULL Desktop Port) */
    .neo-mode-toggle,
    .neo-period-toggle,
    .neo-fee-toggle,
    .neo-tenure-toggle,
    .neo-repayment-toggle {
        display: flex !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        padding: 2px !important;
        position: relative !important;
        width: fit-content !important;
        box-sizing: border-box !important;
    }

    .neo-mode-toggle.triple {
        width: 100% !important;
    }

    .neo-tenure-toggle.triple {
        width: 100% !important;
    }

    .neo-mode-toggle input,
    .neo-period-toggle input,
    .neo-fee-toggle input,
    .neo-tenure-toggle input,
    .neo-repayment-toggle input {
        display: none !important;
    }

    .neo-mode-toggle label,
    .neo-period-toggle label,
    .neo-fee-toggle label,
    .neo-tenure-toggle label,
    .neo-repayment-toggle label {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        color: rgba(255, 255, 255, 0.4) !important;
        min-width: 60px !important;
        text-align: center !important;
        flex: 1 !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        cursor: pointer !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        transition: all 0.3s ease !important;
        line-height: normal !important; /* Purely symmetric padding centering */
        min-height: 0 !important;
        display: block !important; /* Standard block behavior like desktop */
    }

    .neo-mode-toggle input:checked+label,
    .neo-period-toggle input:checked+label,
    .neo-fee-toggle input:checked+label,
    .neo-tenure-toggle input:checked+label,
    .neo-repayment-toggle input:checked+label {
        color: #1a0b2e !important;
    }

    .neo-input-panel .neo-tenure-toggle,
    .neo-input-panel .neo-repayment-toggle,
    .neo-input-panel .neo-period-toggle,
    .neo-input-panel .neo-fee-toggle {
        flex-shrink: 0 !important;
        width: auto !important;
    }

    .neo-input-panel .neo-tenure-toggle.triple {
        width: calc(var(--panel-toggle-unit-width) * 3 + 4px) !important;
    }

    .neo-input-panel .neo-repayment-toggle {
        width: calc(var(--panel-toggle-unit-width) * 2 + 4px) !important;
    }

    .neo-input-panel .neo-period-toggle,
    .neo-input-panel .neo-fee-toggle {
        width: calc(var(--panel-toggle-unit-width) * 2 + 4px) !important;
    }

    .neo-input-panel .neo-tenure-toggle label,
    .neo-input-panel .neo-repayment-toggle label,
    .neo-input-panel .neo-period-toggle label,
    .neo-input-panel .neo-fee-toggle label {
        width: var(--panel-toggle-unit-width) !important;
        box-sizing: border-box !important;
        padding: 0.28rem 0.12rem !important;
        font-size: 0.56rem !important;
        letter-spacing: 0.03em !important;
        min-width: 0 !important;
    }

    .toggle-slider,
    .period-slider,
    .fee-slider,
    .tenure-slider,
    .repayment-slider {
        position: absolute !important;
        top: 2px !important;
        bottom: 2px !important;
        left: 2px !important;
        width: calc(50% - 2px) !important;
        background: linear-gradient(135deg, var(--primary) 0%, #cc9900 100%) !important;
        border-radius: 6px !important;
        z-index: 1 !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 2px 10px rgba(255, 204, 51, 0.2) !important;
    }

    .neo-mode-toggle.triple .toggle-slider {
        width: calc(33.33% - 2px) !important;
    }

    .neo-mode-toggle.triple input[value="reducing-fixed"]:checked~.toggle-slider { transform: translateX(100%) !important; }
    .neo-mode-toggle.triple input[value="reducing-declining"]:checked~.toggle-slider { transform: translateX(200%) !important; }
    .neo-period-toggle input[value="yearly"]:checked~.period-slider { transform: translateX(100%) !important; }
    .neo-fee-toggle input[value="amount"]:checked~.fee-slider { transform: translateX(100%) !important; }
    .neo-repayment-toggle input[value="lump-sum"]:checked~.repayment-slider { transform: translateX(100%) !important; }
    .neo-tenure-toggle.triple .tenure-slider { width: calc(33.33% - 2px) !important; }
    .neo-tenure-toggle.triple input[value="month"]:checked~.tenure-slider { transform: translateX(100%) !important; }
    .neo-tenure-toggle.triple input[value="year"]:checked~.tenure-slider { transform: translateX(200%) !important; }
    .neo-tenure-toggle:not(.triple) input[value="year"]:checked~.tenure-slider { transform: translateX(100%) !important; }

    /* 2. Dropdown Styling (FULL Desktop Port) */
    .neo-custom-dropdown {
        position: relative !important;
        width: 100% !important;
    }

    .preset-panel-toolbar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.85rem !important;
        padding-bottom: 0.8rem !important;
        margin-bottom: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .preset-panel-title {
        margin: 0 !important;
        font-size: 0.72rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
        font-weight: 850 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
    }

    .preset-status-toggle {
        transform: scale(0.85) !important;
        transform-origin: right center !important;
    }

    .dropdown-trigger {
        width: 100% !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        padding: 0.6rem 0.9rem !important; /* Matched to desktop */
        font-size: 0.75rem !important; /* Matched to desktop */
        min-height: 38px !important; /* Matched to desktop */
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
    }

    .dropdown-options {
        position: absolute !important;
        top: calc(100% + 5px) !important;
        left: 0 !important;
        right: 0 !important;
        background: #0a0612 !important;
        border: 1px solid rgba(255, 204, 51, 0.3) !important;
        border-radius: 8px !important;
        z-index: 1000 !important;
        display: none !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        max-height: 230px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(255, 204, 51, 0.78) rgba(255, 255, 255, 0.04) !important;
    }

    .dropdown-options::-webkit-scrollbar {
        width: 8px !important;
    }

    .dropdown-options::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.04) !important;
        border-radius: 999px !important;
    }

    .dropdown-options::-webkit-scrollbar-thumb {
        background: rgba(255, 204, 51, 0.78) !important;
        border-radius: 999px !important;
    }

    .dropdown-section-label {
        color: var(--gold) !important;
        padding: 0.55rem 1rem 0.25rem !important;
    }

    .neo-custom-dropdown.open .dropdown-options {
        display: block !important;
        animation: dropdownFadeIn 0.2s ease-out !important;
    }

    .dropdown-item {
        padding: 0.75rem 1rem 0.75rem 1.45rem !important;
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
    }

    .dropdown-item:hover {
        background: var(--primary) !important;
        color: #1a0b2e !important;
        font-weight: 700 !important;
    }

    .dropdown-item.active {
        background: var(--primary) !important;
        color: #1a0b2e !important;
        font-weight: 700 !important;
    }

    .dropdown-search-shell {
        position: sticky !important;
        top: 0 !important;
        z-index: 3 !important;
        padding: 0.55rem !important;
        background: #0a0612 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .dropdown-search-input {
        width: 100% !important;
        min-height: 36px !important;
        padding: 0.55rem 0.8rem !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        color: #fff !important;
        font-size: 0.78rem !important;
        font-weight: 500 !important;
    }

    .dropdown-search-empty {
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 44px !important;
        padding: 0.7rem 1rem 0.9rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
        font-size: 0.75rem !important;
        text-align: center !important;
    }

    .dropdown-options.is-search-empty .dropdown-search-empty {
        display: flex !important;
    }

    .current-value {
        color: #fff !important;
        font-weight: 500 !important;
    }

    .select-arrow {
        flex-shrink: 0 !important;
        width: 6px !important;
        height: 6px !important;
        border-right: 2px solid #fff !important;
        border-bottom: 2px solid #fff !important;
        transform: rotate(45deg) !important;
        margin-bottom: 3px !important;
        opacity: 0.5 !important;
    }

    .neo-custom-dropdown.open .select-arrow {
        transform: rotate(-135deg) !important;
        margin-bottom: -3px !important;
        border-color: var(--primary) !important;
        opacity: 1 !important;
    }

    /* 3. Input Styling (Exact Desktop Port) */
    input:not([type="checkbox"]) {
        width: 100% !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        border-radius: 8px !important;
        padding: 0.6rem 0.9rem !important; /* Matched to desktop */
        font-family: 'Outfit', sans-serif !important;
        font-weight: 500 !important;
        font-size: 0.75rem !important; /* Matched to desktop */
        appearance: none !important;
        -webkit-appearance: none !important;
    }

    input:focus {
        border-color: var(--primary) !important;
        background: rgba(0, 0, 0, 0.6) !important;
        box-shadow: 0 0 20px rgba(255, 204, 51, 0.15) !important;
        outline: none !important;
    }

    /* 4. Submit Button (Exact Desktop Port) */
    .neo-btn-submit {
        width: 100% !important;
        background: transparent !important;
        border: 2px solid var(--primary) !important;
        color: var(--primary) !important;
        border-radius: 10px !important;
        font-size: 0.75rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 0.75rem !important;
        margin-top: 1.2rem !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .neo-btn-submit:active {
        background: var(--primary) !important;
        color: #1a0b2e !important;
        box-shadow: 0 0 30px rgba(255, 204, 51, 0.4) !important;
        transform: translateY(-2px) scale(0.98) !important;
    }

    /* 5. Results & Placeholder (Split Flow) */
    .mobile-top-placeholder {
        display: block !important;
        margin-top: 1.25rem !important; /* Memberi jarak sikit dengan description 1 */
        margin-bottom: 0.25rem !important; /* Rapatkan gap dengan loan scenario panel */
    }

    /* Hide the bottom placeholder on mobile until a verdict is generated */
    #results-summary .neo-placeholder-summary {
        display: none !important;
    }

    /* Keep the banner container but hide its initial contents on mobile */
    .neo-summary-banner {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Descriptions & Footer Logic */
    .mobile-footer-description { 
        order: 4; /* Appears after Panels */
        margin-top: 1rem !important; 
    }

    .neo-results-panel {
        order: 5; /* Results come last */
        margin-top: 0 !important; /* Pull closer to description 3 */
    }

    .neo-placeholder-summary {
        padding: 1.25rem !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px dashed rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        position: relative !important;
        width: 100% !important;
    }

    .neo-placeholder-summary p {
        color: var(--text-dim) !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        text-align: center !important;
    }

    .neo-pdf-header-meta {
        margin-top: 1.5rem !important; /* Memberi jarak dengan Note di atas */
    }

    /* 6. Loan Summary Card - PRECISION MOBILE PORT */
    .neo-summary-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .neo-summary-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1.25rem 1rem;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .neo-summary-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 2px;
        background: conic-gradient(from var(--border-angle),
                transparent 70%,
                var(--glow-color, rgba(0, 242, 255, 0.4)) 85%,
                #fff 95%,
                var(--glow-color, rgba(0, 242, 255, 0.4)) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: xor;
        animation: rotate-border 4s linear infinite;
        pointer-events: none;
        z-index: 10;
        opacity: 1;
    }

    .neo-summary-card:has(.neo-safe-ribbon) { --glow-color: rgba(90, 240, 200, 0.6); }
    .neo-summary-card:has(.neo-illegal-ribbon) { --glow-color: rgba(255, 107, 107, 0.6); }

    .neo-summary-card :not(.hero-value),
    .neo-summary-card span:not(.hero-value),
    .neo-summary-card strong,
    .neo-summary-card div:not(.neo-hero-stat) {
        font-size: 0.75rem !important;
    }

    .neo-hero-stat {
        text-align: center;
        margin: 0.5rem 0 1.2rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-label {
        font-size: 0.65rem !important;
        text-transform: uppercase;
        color: var(--text-dim);
        letter-spacing: 0.05em;
        font-weight: 800;
        margin-bottom: 0.2rem;
    }

    .hero-value {
        font-size: 2.2rem !important;
        font-weight: 950 !important;
        line-height: 1;
        letter-spacing: -1px;
    }

    .hero-divider {
        width: 40px;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.8rem auto 0 auto;
        border-radius: 2px;
    }

    .neo-card-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .neo-card-badge {
        background: rgba(255, 255, 255, 0.08);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-weight: 950;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .meta-item, .neo-stat-group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.4rem 0;
    }

    .meta-item span, .neo-stat-label {
        color: var(--text-dim);
        text-transform: uppercase;
        font-weight: 700;
    }

    .meta-item strong, .neo-stat-value {
        color: #fff;
        font-weight: 800;
        text-align: right;
    }

    .neo-illegal-ribbon,
    .neo-safe-ribbon {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        color: #fff;
        font-weight: 950;
        padding: 0.4rem 0;
        text-transform: uppercase;
        z-index: 5;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.7rem !important;
    }

    .neo-illegal-ribbon { background: #ff453a; box-shadow: 0 5px 15px rgba(255, 69, 58, 0.4); }
    .neo-safe-ribbon { background: #34c759; box-shadow: 0 5px 15px rgba(52, 199, 89, 0.4); }

    /* PDF Viewer & Header Mobile Shrink */
    .neo-pdf-header-meta h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .neo-pdf-header-meta p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .neo-pdf-viewer {
        min-height: 300px !important; 
        height: auto !important; /* Let JS or content define height */
        display: flex !important;
        flex-direction: column !important;
    }

    .paper-zoom-wrapper {
        padding: 0 !important; /* Zero padding for full width impact */
        display: flex !important;
        justify-content: flex-start !important; /* Align left for precise scaling */
        overflow-x: hidden !important; 
        width: 100% !important;
    }

    .paper-zoom-container {
        width: 1122px !important;
        flex-shrink: 0 !important;
        transform-origin: top left !important; /* Match JS logic */
    }

    .neo-pdf-toolbar {
        padding: 0.5rem 0.75rem !important;
        gap: 0.4rem !important;
    }

    .toolbar-left, .toolbar-center, .toolbar-right {
        gap: 0.4rem !important;
    }

    .toolbar-page-info {
        font-size: 0.65rem !important;
        min-width: 70px !important;
        line-height: 1.2 !important;
    }

    .neo-pdf-btn {
        padding: 0.6rem !important; /* Circular-ish for icon only */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
    }

    .neo-pdf-btn span {
        display: none !important; /* Hide text on mobile, keep icon */
    }

    .neo-pdf-btn svg {
        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
    }

    .neo-pdf-toolbar {
        padding: 0.75rem !important;
        justify-content: space-between !important;
        display: flex !important;
        align-items: center !important;
    }

    .toolbar-left {
        display: flex !important;
        align-items: center !important;
    }

    .toolbar-center {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .neo-zoom-controls {
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 4px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        gap: 0.6rem !important;
    }

    .zoom-btn {
        width: 28px !important;
        height: 28px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        color: #fff !important;
        border: none !important;
        font-weight: 800 !important;
    }

    .zoom-level {
        font-size: 0.7rem !important;
        font-weight: 800 !important;
        min-width: 35px !important;
        text-align: center !important;
    }

    .toolbar-page-info {
        font-size: 0.6rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        color: var(--text-dim) !important;
        max-width: 60px !important;
        line-height: 1.1 !important;
        display: block !important;
    }

    /* Status Colors */
    .status-illegal { color: #ff6b6b !important; }
    strong.status-safe { color: #5af0c8 !important; }
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
