        /* Container styles for both tables */
        .table-container {
            font-family: 'Morion',Georgia,serif;
            color: #333;
            line-height: 1.5;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 3rem auto;
        }

        /* ===== DECEMBER 2022 TABLE STYLES ===== */
        .hustler-fund-2022-wrapper {
            margin-bottom: 3rem;
            font-family: 'Georgia', 'Times New Roman', serif;
        }

        .hustler-fund-2022-caption {
            color: #000;
            font-size: clamp(1rem, 3vw, 1.1rem);
            margin-bottom: 1em;
            line-height: 1.4;
        }
        .hustler-fund-2022-caption em {
            font-weight: bold;
        }

        .hustler-fund-2022-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Roboto', Arial, sans-serif;
            font-size: clamp(0.8rem, 3vw, 1.1rem);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin-bottom: 1rem;
        }
        
        .hustler-fund-2022-table td {
            padding: clamp(12px, 3vw, 16px) clamp(12px, 3vw, 20px);
            vertical-align: middle;
        }

        .hustler-fund-2022-table tr {
            background-color: #fff;
            border-bottom: 1px solid rgba(0,0,0,.2); 
        }

        .hustler-fund-2022-table tr:last-child {
            border-bottom: none;
        }

        .hustler-fund-2022-table td:first-child {
            font-weight: bold;
            border-right: 1px solid rgba(0,0,0,.2);
            width: 65%;
        }

        .hustler-fund-2022-table td:last-child {
            text-align: right;
            white-space: nowrap;
        }
        
        .hustler-fund-2022-source {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            color: #555555;
            margin-top: 1em;
            font-style: italic;
            line-height: 1.4;
        }

        /* ===== SEPTEMBER 2024 TABLE STYLES ===== */
        .hustler-fund-2024-wrapper {
            font-family: 'Georgia', 'Times New Roman', serif;
            /* overflow-x: auto; */
        }

        .hustler-fund-2024-caption {
            color: #000;
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            margin-bottom: 1em;
        }
        .hustler-fund-2024-caption em {
            font-weight: bold;
        }

        .hustler-fund-2024-table {
            width: 100%;
            min-width: 500px;
            border-collapse: collapse;
            font-family: 'Roboto', Arial, sans-serif;
            font-size: clamp(0.8rem, 2.5vw, 1.05rem);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .hustler-fund-2024-table thead th {
            padding: 0.75rem;
            font-weight: bold;
            text-align: center;
            background-color: #e6f2fb;
            border-top: 1px solid rgba(0,0,0,.2);
            border-bottom: 1px solid rgba(0,0,0,.2);
        }

        .hustler-fund-2024-table td {
            padding: 0.75rem;
            vertical-align: top;
        }
        
        .hustler-fund-2024-table tbody tr {
            background-color: #fff;
            border-bottom: 1px solid rgba(0,0,0,.2); 
        }

        .hustler-fund-2024-table tbody tr:last-child {
            border-bottom: none;
        }
        
        .hustler-fund-2024-table th:not(:last-child),
        .hustler-fund-2024-table td:not(:last-child) {
            border-right: 1px solid rgba(0,0,0,.2);
        }

        .hustler-fund-2024-table td:nth-child(odd) {
            font-weight: bold;
            width: 30%;
        }
        
        .hustler-fund-2024-table td:nth-child(even) {
            text-align: right;
            width: 20%;
        }
        
        .hustler-fund-2024-source {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            color: #555555;
            margin-top: 1em;
            font-style: italic;
        }
        
        .hustler-fund-2024-source a {
            color: #0056b3;
            text-decoration: none;
        }
        .hustler-fund-2024-source a:hover {
            text-decoration: underline;
        }
        
        sup {
            font-size: 0.7em;
            vertical-align: super;
        }

        /* Responsive adjustments */
        @media (max-width: 600px) {

            .table-container {
                width: 90vw;
                min-width: auto;
            }

            .hustler-fund-2024-table {
                width: 90vw;
                min-width: auto;
            }

            .hustler-fund-2024-table td, 
            .hustler-fund-2024-table th {
                padding: 0.5rem;
            }
            
            .hustler-fund-2024-table td:nth-child(odd) {
                width: 35%;
            }
            
            .hustler-fund-2024-table td:nth-child(even) {
                width: 15%;
            }

            .hustler-fund-2022-table td:first-child {
                width: 60%;
            }
            
            body {
                padding: 0.5rem;
            }
        }

        /* Bar Chart */
        .repayment-chart-container {
            width: 100%;
            max-width: 700px;
            background-color: #ffffff;
            padding: 25px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            box-sizing: border-box;
        }

        .repayment-chart {
            display: flex;
            justify-content: space-around;
            height: 300px;
            padding: 0;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
            margin-top: 30px;
            margin-bottom: 40px;
        }
        
        .repayment-chart::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: repeating-linear-gradient(
                to top,
                #e9e9e9 0, 
                #e9e9e9 1px, 
                transparent 1px, 
                transparent 20%
            );
            z-index: 0;
        }

        .repayment-bar-group {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            height: 100%;
            width: 22%;
            min-width: 60px;
            z-index: 1;
            position: relative;
        }

        .repayment-bar {
            display: flex;
            flex-direction: column-reverse;
            width: 100%;
            max-width: 100px;
            transition: height 0.4s ease-out;
            position: absolute;
            bottom: 0;
        }

        .repayment-bar-segment {
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: clamp(0.9rem, 2vw, 1.4em);
            transition: height 0.4s ease-out;
            overflow: hidden;
            width: 100%;
        }

        .repayment-rate-segment {
            background-color: #818285;
        }

        .default-rate-segment {
            background-color: #e62e2d;
        }

        .repayment-date-label {
            position: absolute;
            bottom: -45px;
            font-size: clamp(0.75rem, 2vw, 0.85em);
            color: #555;
            text-align: center;
            line-height: 1.1;
            font-weight: 400;
            width: 100%;
        }

        .repayment-legend {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin: 25px 0 15px 0;
            padding-top: 15px;
        }

        .repayment-legend-item {
            display: flex;
            align-items: center;
            margin: 5px 15px;
            font-size: clamp(0.85rem, 2vw, 1em);
            color: #333;
        }

        .repayment-legend-swatch {
            width: 14px;
            height: 14px;
            margin-right: 8px;
            display: inline-block;
        }

        .repayment-chart-caption {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            color: #666;
            text-align: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            line-height: 1.4;
        }

        @media (max-width: 600px) {
            .repayment-chart {
                height: 250px;
                margin-bottom: 35px;
            }
            
            .repayment-bar-group {
                width: 20%;
                min-width: 50px;
            }
            
            .repayment-date-label {
                bottom: -40px;
            }
            
            .repayment-chart-container {
                padding: 20px 15px;
            }
        }

        @media (max-width: 400px) {
            .repayment-chart {
                height: 200px;
            }
            
            .repayment-legend {
                flex-direction: column;
                align-items: flex-start;
                margin-left: 20px;
            }
            
            .repayment-legend-item {
                margin: 3px 0;
            }
        }