body {
            padding-top: 70px; /* For fixed navbar */
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff !important;
            color: #333333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Controls Header with Search */
        .controls-header {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            padding: 15px 20px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        
        .search-controls {
            display: flex;
            align-items: center;
            position: relative;
            gap: 10px;
        }
        
        #searchInput {
            width: 300px;
            padding: 12px 45px 12px 40px;
            border: 2px solid #2c3e50;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            color: #ffffff;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            background-color: rgba(44, 62, 80, 0.9);
            backdrop-filter: blur(5px);
        }
        
        #searchInput::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        #searchInput:hover {
            border-color: #3498db;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            transform: translateY(-1px);
        }
        
        #searchInput:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
            background-color: rgba(44, 62, 80, 1);
        }
        
        #clearSearch {
            padding: 8px 15px;
            border: none;
            border-radius: 20px;
            background-color: #e74c3c;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        #clearSearch:hover {
            background-color: #c0392b;
            transform: translateY(-1px);
        }
        
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
            pointer-events: none;
        }
        
        /* RTA specific styles */
        .container {
            max-width: 100%;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }
        
        #contentArea {
            display: block;
        }
        
        .trading-header {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 20px;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .title-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .title-section h1 {
            font-size: 1.8rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .trading-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }
        
        .info-banner {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            padding: 8px 15px;
            margin-top: 10px;
        }
        
        .info-content {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        
        .warning-text {
            color: #ff3b3b;
            font-weight: 500;
            text-shadow: 0 0 1px rgba(255, 59, 59, 0.1);
        }
        
        .warning-text i {
            color: #ff3b3b;
        }
        
        /* Table styles aligned with Screener simple design */
        .tables-container {
            display: flex;
            gap: 16px;
            padding: 10px;
            justify-content: space-between;
            align-items: flex-start;
        }

        /* RSI Avg filter bars (per table) */
        .rsi-filter-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 10px 12px;
            border-bottom: 1px solid #e6ebf2;
            background: #ffffff;
        }
        .rsi-filter-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .rsi-filter-label {
            font-size: 12px;
            font-weight: 700;
            color: #334155;
            white-space: nowrap;
        }
        .rsi-filter-controls {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .rsi-between {
            display: none;
            align-items: center;
            gap: 6px;
        }
        .rsi-between .rsi-between-sep {
            font-size: 12px;
            color: #64748b;
            font-weight: 600;
        }
        .rsi-filter-bar .form-select,
        .rsi-filter-bar .form-control:not(.rsi-value-input) {
            height: 34px;
            font-size: 12px;
            border-radius: 10px;
            border: 1px solid #dbe7f5;
            background: #f8fbff;
            color: #0f172a !important;
            -webkit-text-fill-color: #0f172a;
        }
        .rsi-filter-bar .form-select {
            min-width: 210px;
            font-weight: 600;
            padding-right: 34px; /* keep text visible next to arrow */
        }
        .rsi-filter-bar .form-control:not(.rsi-value-input) {
            width: 120px;
            font-weight: 600;
        }
        .rsi-between .form-control:not(.rsi-value-input) { width: 95px; }

        /* Operator segmented control (replaces dropdown for clarity) */
        .rsi-op-segment {
            display: inline-flex;
            align-items: stretch;
            gap: 0;
            border: 1px solid #dbe7f5;
            border-radius: 10px;
            overflow: hidden;
            background: #f8fbff;
        }
        .rsi-op-btn {
            appearance: none;
            border: none;
            background: transparent;
            color: #0f172a;
            font-size: 12px;
            font-weight: 700;
            padding: 0 10px;
            height: 34px;
            cursor: pointer;
            border-right: 1px solid rgba(15, 23, 42, 0.06);
            white-space: nowrap;
        }
        .rsi-op-btn:last-child { border-right: none; }
        .rsi-op-btn:hover { background: #eaf2ff; }
        .rsi-op-btn.active {
            background: #0b63d8;
            color: #ffffff;
        }
        .rsi-op-hidden {
            position: absolute !important;
            left: -99999px !important;
            width: 1px !important;
            height: 1px !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }
        .rsi-filter-bar .btn {
            height: 34px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 10px;
            padding: 0 12px;
            border: 1px solid #dbe7f5;
            background: #f8fbff;
            color: #0b63d8;
        }
        .rsi-filter-bar .btn:hover {
            background: #eaf2ff;
        }
        .rsi-filter-bar .hint {
            font-size: 11px;
            color: #64748b;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .rsi-filter-controls { flex-wrap: wrap; }
            .rsi-op-segment { width: 100%; flex-wrap: wrap; }
            .rsi-op-btn { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(15, 23, 42, 0.06); }
            .rsi-op-btn:nth-last-child(-n+2) { border-bottom: none; }
            .rsi-filter-bar .form-select { min-width: 100%; }
            .rsi-filter-bar .form-control { width: 100%; }
            .rsi-between { width: 100%; }
            .rsi-between .form-control { width: 100%; }
            .rsi-filter-bar .hint { white-space: normal; }
        }
        
        .table-wrapper {
            flex: 1;
            min-width: 48%;
            background: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 10px;
            margin: 0;
            box-shadow: none;
        }
        
        .signal-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            margin: 0;
        }
        
        .signal-table thead th {
            background: #1a2744 !important;
            color: #fff !important;
            padding: 10px 8px !important;
            text-align: center;
            border: 1px solid #2c3e50 !important;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 0.2px;
        }
        
        .signal-table thead th:first-child {
            text-align: left !important;
            padding-left: 14px !important;
        }
        
        .signal-table tbody td {
            padding: 8px 6px !important;
            vertical-align: middle;
            font-weight: 600;
            font-size: 12px;
            border: 1px solid #dee2e6 !important;
            color: #212529;
        }
        
        .signal-table tbody tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .signal-table tbody tr:hover {
            background: #f0f8ff;
        }
        
        .signal-table tbody td:first-child {
            text-align: left !important;
            padding-left: 14px !important;
            font-weight: 700;
            color: #2c3e50;
        }
        
        /* RSI color coding */
        .rsi-value {
            font-weight: 700;
        }
        
        .rsi-high {
            color: #dc3545;
        }
        
        .rsi-low {
            color: #28a745;
        }
        
        /* Refresh control styles */
        .refresh-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .refresh-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        
        .refresh-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .refresh-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .refresh-slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .refresh-slider {
            background-color: #2196F3;
        }
        
        input:checked + .refresh-slider:before {
            transform: translateX(26px);
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .tables-container {
                flex-direction: column;
            }
            
            .table-wrapper {
                min-width: 100%;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .tables-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .table-wrapper {
                width: 100%;
                padding: 10px;
            }
            
            .signal-table {
                font-size: 0.8em;
                min-width: 450px;
            }
            
            .signal-table th, .signal-table td {
                padding: 8px 4px;
            }

            .long-signals, .short-signals {
                font-size: 1.2rem;
                padding: 8px;
            }
            
            .controls-header {
                padding: 10px;
            }
            
            #searchInput {
                width: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 5px;
            }
            
            .signal-table {
                font-size: 0.75em;
                min-width: 400px;
            }
            
            .signal-table th, .signal-table td {
                padding: 6px 4px;
            }
            
            #searchInput {
                width: 200px;
                padding: 10px 15px 10px 35px;
            }
            
            .controls-header {
                padding: 8px;
            }
            
            #clearSearch {
                padding: 6px 12px;
                font-size: 0.9em;
            }
        }
        
        /* Styling for the status indicator */
        .last-update-indicator {
            font-size: 0.8rem;
            color: #6c757d;
            padding: 0.3rem 0.6rem;
            border-radius: 1rem;
            background-color: rgba(0,0,0,0.05);
            margin-right: 1rem;
            display: inline-block;
        }
        .last-update-indicator.updating {
            color: #fff;
            background-color: #007bff;
            animation: pulse 1.5s infinite;
        }
        .last-update-indicator.error {
            color: #fff;
            background-color: #dc3545;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        
        /* SEO Description Section Styling */
        .seo-description-section {
            margin-bottom: 30px;
        }

        .seo-description-section .card {
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        }

        .seo-description-section .card-body {
            padding: 25px;
        }

        .seo-description-section h4 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }

        .seo-description-section p {
            color: #34495e;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .seo-description-section strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .seo-description-section .alert-info {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border: 1px solid #2196f3;
            border-radius: 8px;
        }

        .seo-description-section .alert-heading {
            color: #1565c0;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .seo-description-section ul {
            margin-bottom: 0;
            padding-left: 20px;
        }

        .seo-description-section li {
            color: #1976d2;
            margin-bottom: 5px;
            font-weight: 500;
        }

        /* Professional Search Console Styling */
        .search-console-section .card {
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        }

        .search-console-section .card-header {
            border-radius: 12px 12px 0 0;
            font-weight: 600;
        }

        .search-console-section .input-group {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .search-console-section .form-control {
            border: none;
            padding: 12px 15px;
            font-size: 0.95rem;
        }

        .search-console-section .form-control:focus {
            box-shadow: none;
            border-color: #3498db;
        }

        .search-console-section .btn-outline-secondary {
            border: none;
            background: #6c757d;
            color: white;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }

        .search-console-section .btn-outline-secondary:hover {
            background: #495057;
            transform: translateY(-1px);
        }

        .search-console-section .form-check-input:checked {
            background-color: #3498db;
            border-color: #3498db;
        }

        .search-console-section .badge {
            font-size: 0.85rem;
            padding: 8px 12px;
        }

        /* Professional Table Styling */
        .card {
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .card-header {
            border-radius: 12px 12px 0 0;
            font-weight: 600;
            padding: 15px 20px;
        }

        .table {
            margin-bottom: 0;
        }

        .table th {
            background: linear-gradient(145deg, #2c3e50, #34495e);
            color: white;
            font-weight: 600;
            border: none;
            padding: 12px 8px;
            text-align: center;
            font-size: 0.9rem;
        }

        .table td {
            padding: 10px 8px;
            text-align: center;
            vertical-align: middle;
            border-color: #e9ecef;
            font-size: 0.9rem;
        }

        .table tbody tr:hover {
            background-color: rgba(52, 152, 219, 0.05);
        }

        .table-success th {
            background: linear-gradient(145deg, #28a745, #20c997);
        }

        .table-danger th {
            background: linear-gradient(145deg, #dc3545, #c82333);
        }

        /* Stats Cards Styling */
        .stats-card {
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .stats-card h6 {
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e9ecef;
        }

        .stats-card .d-flex {
            margin-bottom: 8px;
        }

        .stats-card .badge {
            font-size: 0.8rem;
            padding: 6px 10px;
        }

        /* Improved heading display */
        h5 small {
            font-size: 0.75em;
            opacity: 0.8;
            margin-left: 0.5rem;
        }

        /* ── RSI page: dark professional theme ── */
        body.rsi-dark-page {
            background: #0b0f14 !important;
            color: #e2e8f0 !important;
            padding-top: 70px !important;
            display: block !important;
            min-height: 100vh;
            overflow-x: hidden;
        }
        #contentArea.container {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: relative;
            z-index: 2;
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
            padding: 20px 16px 36px;
            overflow: visible !important;
        }
        .controls-header,
        .page-header,
        .seo-description-section .card,
        .table-wrapper {
            background: #141b26 !important;
            border: 1px solid #2a3544 !important;
            border-radius: 14px !important;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
        }
        .breadcrumb-nav {
            background: #141b26 !important;
            border: 1px solid #2a3544 !important;
        }
        .breadcrumb-nav .breadcrumb-item a { color: #60a5fa !important; }
        .breadcrumb-nav .breadcrumb-item.active { color: #94a3b8 !important; }
        .controls-header {
            padding: 14px 16px !important;
            margin-bottom: 14px !important;
        }
        .search-controls {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 10px;
            align-items: center;
            position: relative;
        }
        #searchInput {
            width: 100% !important;
            border: 1px solid #2a3544 !important;
            border-radius: 10px !important;
            background: #0c1219 !important;
            color: #f1f5f9 !important;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2) !important;
            padding: 10px 12px 10px 38px !important;
        }
        #searchInput::placeholder { color: #64748b !important; }
        #searchInput:focus {
            border-color: #3b82f6 !important;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
            background: #0f1724 !important;
        }
        .search-icon {
            left: 12px !important;
            color: #64748b !important;
        }
        #clearSearch {
            background: #1a2332 !important;
            border: 1px solid #2a3544 !important;
            color: #93c5fd !important;
            border-radius: 10px !important;
            padding: 10px 14px !important;
        }
        #clearSearch:hover { background: #243044 !important; border-color: #3b4a5e !important; }

        .page-header {
            padding: 18px 20px !important;
            margin-bottom: 14px !important;
            border-bottom: none !important;
        }
        .page-header h1 { color: #f8fafc !important; font-size: 1.75em !important; }
        .page-header .lead { color: #94a3b8 !important; }
        .breadcrumb-nav {
            border-radius: 12px !important;
            margin-bottom: 14px !important;
            padding: 12px 16px !important;
        }

        /* ── RSI panels: professional card layout ── */
        .tables-container {
            gap: 18px !important;
            padding: 0 !important;
            align-items: stretch !important;
        }
        .table-wrapper {
            padding: 0 !important;
            overflow: visible !important;
            display: flex;
            flex-direction: column;
        }
        .table-wrapper--long {
            border-top: 3px solid #34d399 !important;
        }
        .table-wrapper--short {
            border-top: 3px solid #f87171 !important;
        }

        .rsi-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 18px 0;
        }
        .rsi-panel-title strong {
            display: block;
            font-size: 16px;
            font-weight: 800;
            color: #f8fafc;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .rsi-panel-title small {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #64748b;
            margin-top: 3px;
        }
        .rsi-panel-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }
        .rsi-panel-header--long .rsi-panel-icon {
            background: rgba(52, 211, 153, 0.12);
            color: #34d399;
            box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.25);
        }
        .rsi-panel-header--short .rsi-panel-icon {
            background: rgba(248, 113, 113, 0.12);
            color: #f87171;
            box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.25);
        }
        .rsi-panel-badge {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 5px 11px;
            border-radius: 999px;
        }
        .rsi-panel-badge--long {
            background: rgba(52, 211, 153, 0.12);
            color: #34d399;
            border: 1px solid rgba(52, 211, 153, 0.3);
        }
        .rsi-panel-badge--short {
            background: rgba(248, 113, 113, 0.12);
            color: #f87171;
            border: 1px solid rgba(248, 113, 113, 0.3);
        }

        /* Filter toolbar – dark, two-row layout */
        .rsi-filter-bar {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 0 !important;
            padding: 0 !important;
            margin: 14px 14px 0 !important;
            border: 1px solid #2a3544 !important;
            border-radius: 12px !important;
            background: #0c1219 !important;
            overflow: hidden;
        }
        .rsi-filter-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0;
            align-items: stretch;
        }
        .rsi-filter-section {
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rsi-filter-section:first-child {
            border-right: 1px solid #2a3544;
        }
        .rsi-filter-section--value {
            min-width: 220px;
            background: rgba(255, 255, 255, 0.02);
        }
        .rsi-filter-label {
            font-size: 10px !important;
            font-weight: 800 !important;
            letter-spacing: 0.1em !important;
            text-transform: uppercase !important;
            color: #64748b !important;
        }
        .rsi-filter-controls { gap: 8px !important; }
        .rsi-op-segment {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 5px !important;
            border: none !important;
            background: transparent !important;
            padding: 0 !important;
        }
        .rsi-op-btn {
            border: 1px solid #2a3544 !important;
            border-radius: 8px !important;
            background: #1a2332 !important;
            color: #94a3b8 !important;
            font-size: 11px !important;
            font-weight: 700 !important;
            padding: 0 11px !important;
            height: 30px !important;
            transition: all 0.15s ease !important;
        }
        .rsi-op-btn:hover {
            background: #243044 !important;
            border-color: #3b4a5e !important;
            color: #e2e8f0 !important;
        }
        .table-wrapper--long .rsi-op-btn.active {
            background: #059669 !important;
            border-color: #10b981 !important;
            color: #ecfdf5 !important;
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.35) !important;
        }
        .table-wrapper--short .rsi-op-btn.active {
            background: #dc2626 !important;
            border-color: #ef4444 !important;
            color: #fef2f2 !important;
            box-shadow: 0 0 12px rgba(239, 68, 68, 0.35) !important;
        }

        /* Prominent RSI value input */
        .rsi-value-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .rsi-value-box {
            display: flex;
            align-items: stretch;
            background: #141b26;
            border: 2px solid #3b4a5e;
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
        }
        .table-wrapper--long .rsi-value-box:focus-within {
            border-color: #34d399;
            box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
        }
        .table-wrapper--short .rsi-value-box:focus-within {
            border-color: #f87171;
            box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
        }
        .rsi-value-input {
            width: 72px !important;
            height: 46px !important;
            font-size: 22px !important;
            font-weight: 800 !important;
            background: #1e293b !important;
            border: none !important;
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            caret-color: #ffffff;
            text-align: center;
            font-variant-numeric: tabular-nums;
            padding: 0 4px !important;
            box-shadow: none !important;
            appearance: textfield;
            -moz-appearance: textfield;
        }
        .table-wrapper--long .rsi-value-input {
            color: #6ee7b7 !important;
            -webkit-text-fill-color: #6ee7b7 !important;
            caret-color: #6ee7b7;
            background: rgba(16, 185, 129, 0.08) !important;
        }
        .table-wrapper--short .rsi-value-input {
            color: #fca5a5 !important;
            -webkit-text-fill-color: #fca5a5 !important;
            caret-color: #fca5a5;
            background: rgba(239, 68, 68, 0.08) !important;
        }
        .rsi-filter-bar .form-control.rsi-value-input {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
        }
        .rsi-value-input::-webkit-outer-spin-button,
        .rsi-value-input::-webkit-inner-spin-button {
            appearance: none;
            -webkit-appearance: none;
            margin: 0;
        }
        .rsi-value-input:focus {
            outline: none !important;
            box-shadow: none !important;
        }
        .rsi-value-suffix {
            display: flex;
            align-items: center;
            padding: 0 12px;
            background: #1a2332;
            color: #64748b;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border-left: 1px solid #2a3544;
        }
        .rsi-value-box--sm .rsi-value-input {
            width: 56px !important;
            height: 40px !important;
            font-size: 16px !important;
        }
        .rsi-between {
            display: none;
            align-items: center;
            gap: 8px;
        }
        .rsi-between .rsi-between-sep {
            font-size: 14px;
            color: #64748b;
            font-weight: 700;
        }
        .rsi-filter-bar .form-control:not(.rsi-value-input) {
            height: 36px !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            border-radius: 10px !important;
            border: 1px solid #2a3544 !important;
            background: #141b26 !important;
            color: #f8fafc !important;
            width: 88px !important;
            text-align: center;
        }
        .btn-filter-reset {
            height: 46px !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            border-radius: 10px !important;
            padding: 0 16px !important;
            border: 1px solid #2a3544 !important;
            background: #1a2332 !important;
            color: #94a3b8 !important;
            cursor: pointer;
            transition: all 0.15s ease !important;
            white-space: nowrap;
        }
        .btn-filter-reset:hover {
            background: #243044 !important;
            border-color: #3b4a5e !important;
            color: #e2e8f0 !important;
        }
        .rsi-filter-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-top: 1px solid #2a3544;
            background: rgba(255, 255, 255, 0.02);
        }
        .rsi-filter-footer i {
            font-size: 11px;
            color: #64748b;
            flex-shrink: 0;
        }
        .rsi-filter-hint {
            font-size: 12px !important;
            font-weight: 600 !important;
            color: #94a3b8 !important;
            white-space: normal !important;
            padding: 0 !important;
            border: none !important;
            background: transparent !important;
            border-radius: 0 !important;
        }
        .table-wrapper--long .rsi-filter-hint { color: #6ee7b7 !important; }
        .table-wrapper--short .rsi-filter-hint { color: #fca5a5 !important; }

        .rsi-panel-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Table area – dark */
        .table-responsive {
            max-height: none !important;
            overflow: visible !important;
            border-radius: 0 0 14px 14px;
            margin-top: 12px;
        }
        .table-sticky-head {
            position: sticky;
            top: 72px;
            z-index: 28;
            display: grid;
            grid-template-columns: 28% repeat(5, 14.4%);
            gap: 0;
            padding: 0;
            margin: 0 14px;
            border-radius: 10px 10px 0 0;
            border: 1px solid #2a3544;
            border-bottom: none;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .table-sticky-head span {
            padding: 11px 4px;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            white-space: nowrap;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .table-sticky-head span:first-child,
        .table-sticky-head span:last-child { padding-left: 4px; padding-right: 4px; }
        .table-sticky-head span:last-child { border-right: none; }
        .table-sticky-head-long {
            background: rgba(52, 211, 153, 0.1);
            color: #6ee7b7;
            border-color: rgba(52, 211, 153, 0.2);
        }
        .table-sticky-head-short {
            background: rgba(248, 113, 113, 0.1);
            color: #fca5a5;
            border-color: rgba(248, 113, 113, 0.2);
        }
        .signal-table {
            width: calc(100% - 28px) !important;
            margin: 0 14px 14px !important;
            border-collapse: collapse !important;
            table-layout: fixed !important;
            background: #0c1219 !important;
            border: 1px solid #2a3544;
            border-radius: 0 0 10px 10px;
            overflow: hidden;
        }
        .signal-table th,
        .signal-table td { text-align: center !important; }
        .signal-table th:first-child,
        .signal-table td:first-child { text-align: left !important; }
        #longTable th:nth-child(1), #longTable td:nth-child(1),
        #shortTable th:nth-child(1), #shortTable td:nth-child(1) { width: 28% !important; }
        #longTable th:nth-child(2), #longTable td:nth-child(2),
        #shortTable th:nth-child(2), #shortTable td:nth-child(2),
        #longTable th:nth-child(3), #longTable td:nth-child(3),
        #shortTable th:nth-child(3), #shortTable td:nth-child(3),
        #longTable th:nth-child(4), #longTable td:nth-child(4),
        #shortTable th:nth-child(4), #shortTable td:nth-child(4),
        #longTable th:nth-child(5), #longTable td:nth-child(5),
        #shortTable th:nth-child(5), #shortTable td:nth-child(5),
        #longTable th:nth-child(6), #longTable td:nth-child(6),
        #shortTable th:nth-child(6), #shortTable td:nth-child(6) { width: 14.4% !important; }
        .signal-table thead { display: none; }
        .signal-table tbody td {
            border-bottom: 1px solid #1e2936 !important;
            border-left: none !important;
            border-right: none !important;
            border-top: none !important;
            color: #cbd5e1 !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            padding: 11px 8px !important;
            font-variant-numeric: tabular-nums;
            transition: background-color 0.15s ease !important;
        }
        .signal-table tbody tr:nth-child(even) { background: #0f1520 !important; }
        .signal-table tbody tr:hover { background: #1a2332 !important; }
        .signal-table tbody tr:hover td { background: transparent !important; }
        .signal-table tbody td:first-child {
            color: #f1f5f9 !important;
            font-weight: 700 !important;
            padding-left: 16px !important;
            font-variant-numeric: normal;
        }
        .signal-table td.high-value {
            color: #fca5a5 !important;
            background: rgba(239, 68, 68, 0.12) !important;
            font-weight: 800 !important;
        }
        .signal-table td.low-value {
            color: #6ee7b7 !important;
            background: rgba(16, 185, 129, 0.12) !important;
            font-weight: 800 !important;
        }
        .signal-table td.neutral-value {
            color: #fcd34d !important;
            background: rgba(245, 158, 11, 0.1) !important;
            font-weight: 700 !important;
        }
        .signal-table tbody tr:hover td.high-value { background: rgba(239, 68, 68, 0.18) !important; }
        .signal-table tbody tr:hover td.low-value { background: rgba(16, 185, 129, 0.18) !important; }
        .signal-table tbody tr:hover td.neutral-value { background: rgba(245, 158, 11, 0.15) !important; }
        .signal-table .text-center {
            color: #64748b !important;
            font-weight: 500 !important;
            font-style: italic;
            padding: 24px 16px !important;
        }

        .seo-description-section .card-body { color: #94a3b8 !important; }
        .seo-description-section h2,
        .seo-description-section h3,
        .seo-description-section h4 { color: #f1f5f9 !important; }
        .seo-description-section p { color: #94a3b8 !important; }
        .seo-description-section strong { color: #e2e8f0 !important; }
        .accordion-button {
            background: #1a2332 !important;
            color: #e2e8f0 !important;
        }
        .accordion-button:not(.collapsed) {
            background: #243044 !important;
            color: #f8fafc !important;
        }
        .accordion-body { background: #141b26 !important; color: #94a3b8 !important; }

        @media (max-width: 900px) {
            .rsi-filter-grid { grid-template-columns: 1fr; }
            .rsi-filter-section:first-child { border-right: none; border-bottom: 1px solid #2a3544; }
            .rsi-filter-section--value { min-width: 0; }
        }
        @media (max-width: 768px) {
            .search-controls { grid-template-columns: 1fr; }
            #contentArea.container { padding: 14px 10px 30px; }
            .tables-container { flex-direction: column; }
            .table-wrapper { width: 100%; min-width: 100% !important; }
            .rsi-panel-header { padding: 12px 14px 0; }
            .rsi-filter-bar { margin: 12px 10px 0 !important; }
            .rsi-op-btn { flex: 1 1 calc(50% - 5px); }
            .table-sticky-head {
                top: 66px;
                font-size: 9px;
                margin: 0 10px;
            }
            .signal-table {
                width: calc(100% - 20px) !important;
                margin: 0 10px 10px !important;
            }
        }

        /* ── Page preloader (full-screen overlay, hidden after load) ── */
        .preloader {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0b0f14;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .preloader .spinner {
            width: 42px;
            height: 42px;
            margin: 0;
            border: 3px solid rgba(148, 163, 184, 0.2);
            border-top-color: #60a5fa;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            display: none !important;
        }

        /* RTL (Farsi/Arabic): keep data tables LTR, UI labels RTL */
        html[dir="rtl"] body.rsi-dark-page {
            display: block !important;
            overflow-x: visible !important;
        }
        html[dir="rtl"] body.rsi-dark-page #contentArea.container {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            width: 100% !important;
            max-width: 1240px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            overflow: visible !important;
        }
        html[dir="rtl"] body.rsi-dark-page .breadcrumb-nav .container,
        html[dir="rtl"] body.rsi-dark-page .page-header .container {
            width: 100% !important;
            max-width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        html[dir="rtl"] body.rsi-dark-page .tables-container,
        html[dir="rtl"] body.rsi-dark-page .table-wrapper,
        html[dir="rtl"] body.rsi-dark-page .table-responsive,
        html[dir="rtl"] body.rsi-dark-page .table-sticky-head,
        html[dir="rtl"] body.rsi-dark-page .signal-table {
            direction: ltr;
            unicode-bidi: isolate;
        }
        html[dir="rtl"] body.rsi-dark-page .tables-container {
            display: flex !important;
            flex-direction: column !important;
            width: 100% !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        html[dir="rtl"] body.rsi-dark-page .table-wrapper {
            display: flex !important;
            flex-direction: column !important;
            overflow: visible !important;
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            flex: 0 0 auto !important;
            visibility: visible !important;
        }
        html[dir="rtl"] body.rsi-dark-page .table-responsive {
            display: block !important;
            overflow-x: auto !important;
            overflow-y: visible !important;
            width: 100% !important;
            max-width: 100% !important;
            -webkit-overflow-scrolling: touch;
        }
        html[dir="rtl"] body.rsi-dark-page .table-sticky-head {
            position: static !important;
            top: auto !important;
            display: grid !important;
            visibility: visible !important;
        }
        html[dir="rtl"] body.rsi-dark-page .signal-table {
            display: table !important;
            visibility: visible !important;
            opacity: 1 !important;
            width: calc(100% - 28px) !important;
            max-width: 100%;
        }
        html[dir="rtl"] body.rsi-dark-page .signal-table th,
        html[dir="rtl"] body.rsi-dark-page .signal-table td {
            text-align: center !important;
        }
        html[dir="rtl"] body.rsi-dark-page .signal-table th:first-child,
        html[dir="rtl"] body.rsi-dark-page .signal-table td:first-child {
            text-align: left !important;
        }
        html[dir="rtl"] body.rsi-dark-page .rsi-panel-header,
        html[dir="rtl"] body.rsi-dark-page .rsi-filter-bar,
        html[dir="rtl"] body.rsi-dark-page .rsi-filter-footer,
        html[dir="rtl"] body.rsi-dark-page .page-header,
        html[dir="rtl"] body.rsi-dark-page .breadcrumb-nav,
        html[dir="rtl"] body.rsi-dark-page .controls-header,
        html[dir="rtl"] body.rsi-dark-page .seo-description-section {
            direction: rtl;
            text-align: right;
        }
        html[dir="rtl"] body.rsi-dark-page .search-controls {
            direction: rtl;
        }
        html[dir="rtl"] body.rsi-dark-page .search-icon {
            left: auto !important;
            right: 12px !important;
        }
        html[dir="rtl"] body.rsi-dark-page #searchInput {
            padding: 10px 38px 10px 12px !important;
        }
        @media (orientation: landscape) and (max-height: 700px) {
            html[dir="rtl"] body.rsi-dark-page {
                overflow-x: visible !important;
                overflow-y: auto !important;
            }
            html[dir="rtl"] body.rsi-dark-page #contentArea.container {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                overflow: visible !important;
                height: auto !important;
            }
            html[dir="rtl"] body.rsi-dark-page .tables-container {
                display: flex !important;
                flex-direction: column !important;
                visibility: visible !important;
                opacity: 1 !important;
                height: auto !important;
                width: 100% !important;
            }
            html[dir="rtl"] body.rsi-dark-page .table-wrapper {
                display: flex !important;
                flex-direction: column !important;
                flex: 0 0 auto !important;
                height: auto !important;
                min-height: 0 !important;
                overflow: visible !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: 100% !important;
                max-width: 100% !important;
            }
            html[dir="rtl"] body.rsi-dark-page .table-responsive {
                display: block !important;
                overflow-x: auto !important;
                overflow-y: visible !important;
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                visibility: visible !important;
                opacity: 1 !important;
                -webkit-overflow-scrolling: touch;
                direction: ltr !important;
                unicode-bidi: isolate;
            }
            html[dir="rtl"] body.rsi-dark-page .table-sticky-head {
                position: static !important;
                top: auto !important;
                display: grid !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: calc(100% - 28px) !important;
                max-width: calc(100% - 28px) !important;
                margin: 0 14px !important;
                min-width: 0 !important;
            }
            html[dir="rtl"] body.rsi-dark-page .signal-table {
                display: table !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: 100% !important;
                min-width: 0 !important;
                max-width: 100% !important;
                margin: 0 0 14px !important;
            }
        }

        /* Override global i18n-rtl table alignment for RSI signal tables */
        html[dir="rtl"] body.rsi-dark-page table.signal-table th,
        html[dir="rtl"] body.rsi-dark-page table.signal-table td {
            text-align: center !important;
            direction: ltr;
            unicode-bidi: embed;
        }

        /* Mobile + landscape: keep tables stacked and scrollable (all locales) */
        @media (max-width: 1200px) {
            body.rsi-dark-page .tables-container {
                flex-direction: column !important;
            }
            body.rsi-dark-page .table-wrapper {
                min-width: 100% !important;
                width: 100% !important;
            }
        }
        @media (max-width: 992px), (max-height: 520px), (orientation: landscape) and (max-height: 700px) {
            body.rsi-dark-page {
                display: block !important;
                min-height: 100vh;
                overflow-x: hidden;
            }
            html[dir="rtl"] body.rsi-dark-page {
                overflow-x: visible !important;
            }
            body.rsi-dark-page .tables-container {
                flex-direction: column !important;
                gap: 14px !important;
            }
            body.rsi-dark-page .table-wrapper {
                overflow: visible !important;
                min-width: 100% !important;
                width: 100% !important;
                flex: 0 0 auto !important;
            }
            body.rsi-dark-page .table-responsive {
                overflow-x: visible !important;
                overflow-y: visible !important;
                width: 100%;
            }
            body.rsi-dark-page .table-sticky-head {
                position: static !important;
                top: auto !important;
                min-width: 0 !important;
                width: calc(100% - 16px) !important;
                margin: 0 8px !important;
                grid-template-columns: minmax(0, 1.15fr) repeat(5, minmax(0, 0.97fr)) !important;
                font-size: 8px !important;
            }
            body.rsi-dark-page .table-sticky-head span {
                padding: 6px 1px !important;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                text-align: center !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            body.rsi-dark-page .signal-table {
                min-width: 0 !important;
                width: calc(100% - 16px) !important;
                margin: 0 8px 8px !important;
            }
            body.rsi-dark-page .signal-table tbody td {
                font-size: 10px !important;
                padding: 5px 1px !important;
            }
            body.rsi-dark-page .signal-table tbody td:first-child {
                padding-left: 6px !important;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 0;
            }
            body.rsi-dark-page #longTable th:nth-child(1), body.rsi-dark-page #longTable td:nth-child(1),
            body.rsi-dark-page #shortTable th:nth-child(1), body.rsi-dark-page #shortTable td:nth-child(1) {
                width: 20% !important;
            }
            body.rsi-dark-page #longTable th:nth-child(n+2), body.rsi-dark-page #longTable td:nth-child(n+2),
            body.rsi-dark-page #shortTable th:nth-child(n+2), body.rsi-dark-page #shortTable td:nth-child(n+2) {
                width: 16% !important;
            }
            body.rsi-dark-page .symbol-link img,
            body.rsi-dark-page .symbol-link-cell img {
                width: 14px !important;
                height: 14px !important;
            }
        }
        @media (max-width: 480px) {
            body.rsi-dark-page .table-sticky-head {
                font-size: 7px !important;
                letter-spacing: 0 !important;
                width: calc(100% - 12px) !important;
                margin: 0 6px !important;
            }
            body.rsi-dark-page .signal-table {
                width: calc(100% - 12px) !important;
                margin: 0 6px 6px !important;
            }
            body.rsi-dark-page .signal-table tbody td {
                font-size: 9px !important;
                padding: 4px 0 !important;
            }
            body.rsi-dark-page .table-sticky-head span {
                padding: 4px 0 !important;
                text-align: center !important;
                justify-content: center !important;
            }
            body.rsi-dark-page .table-sticky-head span:first-child {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
        }

        /* RSI Dashboard: 2-column tables (Symbol + RSI) */
        body.rsi-dashboard-page .table-sticky-head {
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        }
        body.rsi-dashboard-page .table-sticky-head span {
            text-align: center !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding-left: 4px !important;
            padding-right: 4px !important;
        }
        body.rsi-dashboard-page #longTable th:nth-child(1),
        body.rsi-dashboard-page #longTable td:nth-child(1),
        body.rsi-dashboard-page #shortTable th:nth-child(1),
        body.rsi-dashboard-page #shortTable td:nth-child(1),
        body.rsi-dashboard-page #longTable th:nth-child(2),
        body.rsi-dashboard-page #longTable td:nth-child(2),
        body.rsi-dashboard-page #shortTable th:nth-child(2),
        body.rsi-dashboard-page #shortTable td:nth-child(2) {
            width: 50% !important;
        }
        body.rsi-dashboard-page .signal-table tbody td {
            text-align: center !important;
        }
        body.rsi-dashboard-page .signal-table tbody td:first-child {
            text-align: left !important;
        }
        @media (max-width: 992px) {
            body.rsi-dashboard-page .table-sticky-head {
                width: calc(100% - 16px) !important;
                margin: 0 8px !important;
            }
            body.rsi-dashboard-page .signal-table {
                width: calc(100% - 16px) !important;
                margin: 0 8px 8px !important;
            }
        }

        /* Prevent legacy min-width rules from forcing horizontal scroll on mobile */
        @media (max-width: 768px) {
            body.rsi-dark-page .signal-table {
                min-width: 0 !important;
            }
        }

/* ── SEO + FAQ accordion (match indicator pages e.g. MACD) ── */
body.rsi-dark-page .seo-description-section {
    margin: 0 !important;
}

body.rsi-dark-page .seo-description-section .card {
    background: #141b26 !important;
    border: 1px solid #2a3544 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
    overflow: hidden;
}

body.rsi-dark-page .seo-description-section .card::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #06b6d4, #a855f7);
}

body.rsi-dark-page .seo-description-section .card-body {
    color: #94a3b8 !important;
}

body.rsi-dark-page .seo-description-section h2,
body.rsi-dark-page .seo-description-section h3,
body.rsi-dark-page .seo-description-section h4 {
    color: #f1f5f9 !important;
}

body.rsi-dark-page .seo-description-section h2 {
    font-weight: 900 !important;
    letter-spacing: -0.02em;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid rgba(96, 165, 250, 0.25) !important;
}

body.rsi-dark-page .seo-description-section h2::before {
    content: "▸";
    display: inline-block;
    margin-right: 10px;
    color: #60a5fa !important;
}

body.rsi-dark-page .seo-description-section p {
    color: #94a3b8 !important;
}

body.rsi-dark-page .seo-description-section strong {
    color: #e2e8f0 !important;
}

body.rsi-dark-page .seo-description-section a {
    color: #60a5fa !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-bottom: 1px dashed rgba(96, 165, 250, 0.45);
}

body.rsi-dark-page .seo-description-section a:hover {
    color: #93c5fd !important;
    border-bottom-style: solid;
}

body.rsi-dark-page .seo-description-section .alert-info {
    background: #1a2332 !important;
    border: 1px solid #2a3544 !important;
    color: #94a3b8 !important;
}

body.rsi-dark-page .seo-description-section .alert-heading {
    color: #e2e8f0 !important;
}

body.rsi-dark-page .accordion-item {
    background: #141b26 !important;
    border: 1px solid #2a3544 !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

body.rsi-dark-page .accordion-button,
body.rsi-dark-page .accordion-button.collapsed {
    background: #0c1219 !important;
    color: #f1f5f9 !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

body.rsi-dark-page .accordion-button:not(.collapsed) {
    background: #1a2332 !important;
    color: #60a5fa !important;
}

body.rsi-dark-page .accordion-button::after {
    filter: brightness(0) invert(0.72);
}

body.rsi-dark-page .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(58%) sepia(86%) saturate(1000%) hue-rotate(196deg) brightness(103%) contrast(96%);
}

body.rsi-dark-page .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35) !important;
    border-color: #3b82f6 !important;
}

body.rsi-dark-page .accordion-body {
    background: #141b26 !important;
    color: #94a3b8 !important;
    border-top: 1px solid #2a3544 !important;
}

body.rsi-dark-page .accordion-body strong {
    color: #e2e8f0 !important;
}

body.rsi-dark-page .accordion-body a {
    color: #60a5fa !important;
}

html[dir="rtl"] body.rsi-dark-page .seo-description-section h2::before {
    margin-right: 0;
    margin-left: 10px;
}
