/* ===========================
           FINANCIAL TERMINAL DESIGN
           Navy, Cream, Copper
        =========================== */
        
        :root {
            /* Primary Colors */
            --navy-deep: #030f27;
            --navy-medium: #030f27;
            --navy-light: #34495E;
            
            /* Neutral Colors */
            --cream: #FAF7F2;
            --cream-dark: #F0EBE3;
            --beige: #E8DFD0;
            
            /* Accent */
            --copper: #fdbe33;
            --copper-light: #CD853F;
            --copper-dark: #9B5E2A;
            
            /* Status */
            --green: #2E7D32;
            --amber: #E65100;
            --gray: #6C757D;
            
            /* Text */
            --text-primary: #1B2A41;
            --text-secondary: #5A6C7D;
            --text-muted: #8A96A3;
            
            /* Borders */
            --border-light: #DDD5C7;
            --border-medium: #C5B8A5;
            
            /* Typography */
            --font-sans: 'Source Sans 3', sans-serif;
            --font-mono: 'Source Code Pro', monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            background: white;
            color: var(--text-primary);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* ===========================
           HEADER NAVIGATION
        =========================== */
        
        .main-header {
            background: var(--navy-deep);
            color: var(--cream);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--copper);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--cream);
        }

        .logo-img {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(253, 190, 51, 0.3);
        }

        .logo-img svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            color: var(--copper);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .main-nav {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .nav-link {
            padding: 0.75rem 1.5rem;
            color: var(--cream);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            background: rgba(253, 190, 51, 0.1);
            color: var(--copper);
        }

        .nav-link.active {
            background: var(--copper);
            color: var(--navy-deep);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--cream);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--navy-deep);
            border-top: 1px solid var(--copper);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 999;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 1rem;
        }

        .mobile-nav-links .nav-link {
            padding: 1rem;
            border-bottom: 1px solid rgba(253, 190, 51, 0.1);
        }

        /* ===========================
           HERO SECTION
        =========================== */
        
        .hero-section {
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
            color: var(--cream);
            padding: 2rem 0;
            border-bottom: 3px solid var(--copper);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--copper);
            font-weight: 600;
        }

        /* ===========================
           SEARCH BAR
        =========================== */
        
        .search-section {
            background: var(--cream);
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .search-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .search-wrapper {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1.5rem 1rem 3.5rem;
            border: 2px solid var(--border-medium);
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font-sans);
            background: white;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--copper);
            box-shadow: 0 0 0 3px rgba(253, 190, 51, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.25rem;
        }

        /* ===========================
           FILTER CHIPS
        =========================== */
        
        .filter-section {
            background: white;
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 80px;
            z-index: 100;
        }

        .filter-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .filter-chips {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-chip {
            padding: 0.625rem 1.5rem;
            border: 2px solid var(--border-medium);
            background: white;
            color: var(--text-secondary);
            border-radius: 25px;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .filter-chip:hover {
            border-color: var(--copper);
            color: var(--copper);
            background: rgba(253, 190, 51, 0.05);
        }

        .filter-chip.active {
            background: var(--copper);
            border-color: var(--copper);
            color: white;
        }

        .filter-chip-label {
            font-size: 0.9375rem;
            font-weight: 600;
        }

        .filter-chip-count {
            font-size: 1.25rem;
            font-weight: 800;
            font-family: var(--font-mono);
        }

        .filter-chip.active .filter-chip-count {
            color: white;
        }

        .filter-chip:not(.active) .filter-chip-count {
            color: var(--copper);
        }

        /* ===========================
           DATA TABLE
        =========================== */
        
        .table-section {
            flex: 1;
            background: white;
            padding: 2rem 0;
        }

        .table-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .table-wrapper {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 2px solid var(--border-light);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
        }

        .data-table thead {
            background: var(--navy-deep);
            color: var(--cream);
        }

        .data-table th {
            padding: 1rem 1rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-bottom: none;
            white-space: nowrap;
        }

        .data-table th.text-center {
            text-align: center;
        }

        .data-table tbody tr {
            border-bottom: 1px solid var(--border-light);
            transition: background-color 0.2s ease;
            background: white;
        }

        .data-table tbody tr:hover {
            background: rgba(253, 190, 51, 0.03);
        }

        .data-table td {
            padding: 1.25rem 1rem;
            vertical-align: middle;
            font-size: 0.9rem;
        }

        .ipo-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .ipo-type {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--beige);
            color: var(--text-secondary);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .price-value {
            font-family: var(--font-mono);
            font-weight: 600;
        }

        .date-range {
            font-size: 0.875rem;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .gmp-value {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.125rem;
        }

        .gmp-positive {
            color: var(--green);
        }

        .gmp-negative {
            color: #C62828;
        }

        .gmp-neutral {
            color: var(--text-muted);
        }

        .expected-price {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--text-primary);
        }

        .status-badge {
            display: inline-block;
            padding: 0.375rem 0.875rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .status-open {
            background: rgba(46, 125, 50, 0.15);
            color: var(--green);
            border: 2px solid var(--green);
        }

        .status-upcoming {
            background: rgba(230, 81, 0, 0.15);
            color: var(--amber);
            border: 2px solid var(--amber);
        }

        .status-closed {
            background: rgba(108, 117, 125, 0.15);
            color: var(--gray);
            border: 2px solid var(--gray);
        }

        .text-center {
            text-align: center;
        }

        /* Description Row */
        .desc-row {
            display: none;
        }

        .desc-row.show {
            display: table-row;
        }

        .desc-cell {
            padding: 1.25rem 1.5rem !important;
            background: var(--cream);
            border-top: none !important;
        }

        .desc-content {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .toggle-desc {
            background: none;
            border: none;
            color: var(--copper);
            cursor: pointer;
            font-size: 1.25rem;
            padding: 0.25rem;
            transition: transform 0.3s ease;
        }

        .toggle-desc:hover {
            transform: scale(1.15);
        }

        .toggle-desc.active {
            transform: rotate(180deg);
        }

        /* ===========================
           MOBILE CARDS
        =========================== */
        
        .mobile-view {
            display: none;
        }

        .mobile-card {
            background: white;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .mobile-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            gap: 0.75rem;
        }

        .mobile-card-title {
            flex: 1;
            min-width: 0;
        }

        .mobile-card-title .ipo-name {
            font-size: 1rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.35rem;
            word-break: break-word;
            color: var(--text-primary);
        }

        .mobile-card-title .ipo-type {
            display: inline-block;
        }

        .mobile-card-body {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
            background: var(--cream);
            padding: 1rem;
            border-radius: 6px;
        }

        .mobile-field {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            min-width: 0;
        }

        .mobile-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            font-weight: 600;
            white-space: nowrap;
        }

        .mobile-value {
            font-size: 0.95rem;
            color: var(--text-primary);
            font-weight: 700;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .mobile-value.price-value {
            font-family: var(--font-mono);
            font-size: 0.85rem;
        }

        .mobile-value.gmp-value {
            font-family: var(--font-mono);
            font-size: 1.1rem;
        }

        .mobile-value.expected-price {
            font-family: var(--font-mono);
            font-size: 0.95rem;
        }

        .mobile-value.date-range {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .mobile-card-footer {
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mobile-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===========================
           INFO BOXES
        =========================== */
        
        .info-section {
            background: var(--cream);
            padding: 3rem 0;
            border-top: 1px solid var(--border-light);
        }

        .info-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-box {
            background: white;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .info-box-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .info-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .info-text {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ===========================
           FAQ SECTION
        =========================== */
        
        .faq-section {
            background: white;
            padding: 3rem 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 0 2rem;
        }

        .faq-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
        }

        .accordion {
            padding: 0 2rem;
        }

        .accordion-item {
            border: 2px solid var(--border-light);
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .accordion-button {
            background: white;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.0625rem;
            padding: 1.25rem 1.5rem;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-button:not(.collapsed) {
            background: var(--cream);
            color: var(--copper);
        }

        .accordion-button::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '−';
        }

        .accordion-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-collapse.show {
            max-height: 500px;
            transition: max-height 0.3s ease-in;
        }

        .accordion-body {
            padding: 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
            background: var(--cream);
        }

        /* ===========================
           FOOTER
        =========================== */
        
        .main-footer {
            background: var(--navy-deep);
            color: var(--cream);
            border-top: 3px solid var(--copper);
            margin-top: auto;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-about {
            grid-column: span 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-img svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        .footer-logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--cream);
        }

        .footer-desc {
            color: var(--cream-dark);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(253, 190, 51, 0.1);
            border: 1px solid var(--copper);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--copper);
            font-size: 1.125rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--copper);
            color: var(--navy-deep);
            transform: translateY(-2px);
        }

        .footer-section h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--copper);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.625rem;
        }

        .footer-links a {
            color: var(--cream-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--copper);
        }

        .footer-bottom {
            border-top: 1px solid rgba(253, 190, 51, 0.2);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: var(--cream-dark);
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: var(--cream-dark);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--copper);
        }

        /* ===========================
           LANDSCAPE DASHBOARD LAYOUT
        =========================== */
        
        /* Mobile Landscape: 568px - 926px wide, < 500px tall */
        @media (max-width: 926px) and (max-height: 500px) and (orientation: landscape) {
            body {
                overflow-x: hidden;
            }

            /* Compact sticky header */
            .header-container {
                height: 44px;
                padding: 0 1rem;
            }

            .logo-img {
                width: 32px;
                height: 32px;
            }

            .logo-img svg {
                width: 20px;
                height: 20px;
            }

            .logo-title {
                font-size: 0.95rem;
            }

            .logo-subtitle {
                font-size: 0.6rem;
            }

            .mobile-nav {
                top: 44px;
            }

            /* DASHBOARD LAYOUT: Side-by-side panels */
            .hero-section {
                display: none; /* Hide hero in landscape for space */
            }

            .search-section {
                padding: 0.5rem 0;
            }

            .search-input {
                padding: 0.5rem 1rem 0.5rem 2.5rem;
                font-size: 0.85rem;
            }

            .search-icon {
                left: 0.85rem;
                font-size: 1rem;
            }

            .filter-section {
                padding: 0.5rem 0;
                top: 44px;
            }

            .filter-chips {
                gap: 0.4rem;
                justify-content: flex-start;
            }

            .filter-chip {
                padding: 0.35rem 0.85rem;
                font-size: 0.75rem;
                flex-direction: row;
                gap: 0.35rem;
            }

            .filter-chip-label {
                font-size: 0.7rem;
            }

            .filter-chip-count {
                font-size: 0.9rem;
            }

            /* TWO-PANEL LAYOUT */
            .table-section {
                padding: 0;
            }

            .table-container {
                padding: 0.75rem;
            }

            /* Desktop table becomes scrollable list */
            .desktop-view {
                display: none !important;
            }

            .mobile-view {
                display: block !important;
            }

            /* LANDSCAPE CARD: Horizontal layout */
            .mobile-card {
                padding: 0.75rem;
                margin-bottom: 0.5rem;
                display: grid;
                grid-template-columns: 2fr 3fr 1fr;
                gap: 0.75rem;
                align-items: center;
            }

            .mobile-card-header {
                margin-bottom: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
            }

            .mobile-card-title .ipo-name {
                font-size: 0.9rem;
                margin-bottom: 0.25rem;
            }

            .ipo-type {
                font-size: 0.65rem;
                padding: 0.15rem 0.5rem;
            }

            .mobile-card-body {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
                margin-bottom: 0;
            }

            .mobile-field {
                gap: 0.15rem;
            }

            .mobile-label {
                font-size: 0.65rem;
            }

            .mobile-value {
                font-size: 0.8rem;
            }

            .mobile-card-footer {
                border-top: none;
                padding-top: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .status-badge {
                padding: 0.25rem 0.6rem;
                font-size: 0.65rem;
            }

            .mobile-desc {
                display: none; /* Hide descriptions in landscape for space */
            }

            /* Hide info section and FAQ in landscape */
            .info-section,
            .faq-section {
                display: none;
            }

            /* Compact footer */
            .footer-content {
                padding: 1rem 0.75rem;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
                margin-bottom: 1rem;
            }

            .footer-about {
                display: none; /* Hide verbose about section */
            }

            .footer-section h3 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem;
            }

            .footer-links li {
                margin-bottom: 0.35rem;
            }

            .footer-links a {
                font-size: 0.75rem;
            }

            .footer-bottom {
                padding-top: 0.75rem;
                font-size: 0.75rem;
            }

            .footer-legal {
                gap: 0.75rem;
            }

            .footer-legal a {
                font-size: 0.75rem;
            }
        }

        /* Standard Tablet & Mobile Portrait */
        @media (max-width: 968px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            .hero-stats {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .desktop-view {
                display: none;
            }

            .mobile-view {
                display: block;
            }

            .header-container {
                padding: 0 1rem;
            }

            .hero-section {
                padding: 2rem 0;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            
            
            
            
            
            
            
            
            
            
            
            .filter-section {
        padding: 1rem 0;
    }

    .filter-container {
        padding: 0 1rem;
    }

    .filter-chips {
        display: flex;
        gap: 0.5rem;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .filter-chip {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }

    .filter-chip-label {
        font-size: 0.65rem;
    }

    .filter-chip-count {
        font-size: 0.95rem;
    }


            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            

            .info-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .footer-about {
                grid-column: span 2;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                height: 70px;
            }

            .logo-img {
                width: 40px;
                height: 40px;
            }

            .hero-title {
                font-size: 1.35rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .table-container,
            .search-container,
            .filter-container {
                padding: 0 0.75rem;
            }

            .mobile-card {
                padding: 1rem;
            }

            .mobile-card-body {
                grid-template-columns: 1fr 1fr;
                gap: 0.85rem;
                padding: 0.85rem;
            }

            .mobile-value {
                font-size: 0.9rem;
            }

            .mobile-value.gmp-value {
                font-size: 1rem;
            }

            .filter-chip {
        padding: 0.45rem 0.2rem;
        gap: 0.15rem;
    }

    .filter-chip-label {
        font-size: 0.6rem;
    }

    .filter-chip-count {
        font-size: 0.85rem;
    }

        }

        @media (max-width: 360px) {
            .mobile-card-body {
                grid-template-columns: 1fr;
            }
            
            
            
            .filter-chips {
        gap: 0.35rem;
    }

    .filter-chip {
        padding: 0.4rem 0.15rem;
    }

    .filter-chip-label {
        font-size: 0.55rem;
    }

    .filter-chip-count {
        font-size: 0.8rem;
    }
            
            
        }