 .table-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 8px;
            /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        }

        .table-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .table-title::after {
            content: '';
            position: absolute;
           left: 29%;
    /* bottom: 0; */
    top: 28%;
            width: 120px;
            height: 3px;
            background-color: #e63946;
        }

        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
                border: 0.5px solid #e3e3e3;
        }

        thead {
            background-color: #1e5a8e;
        }

        thead th {
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 15px 12px;
            text-align: left;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        thead th:last-child {
            border-right: none;
        }

        tbody tr {
            border-bottom: 1px solid #e0e0e0;
        }

        tbody tr:last-child {
            border-bottom: none;
        }

        tbody tr:nth-child(odd) {
            background-color: #ffffff;
        }

        tbody tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        tbody td {
            padding: 15px 12px;
            font-size: 13px;
            color: #333;
            line-height: 1.5;
            vertical-align: top;
        }

        tbody td:first-child {
            font-weight: 600;
            color: #2c3e50;
        }

        /* Scrollbar styling for webkit browsers */
        .table-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .table-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .table-wrapper::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        .table-wrapper::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 20px 10px;
            }

            .table-container {
                padding: 20px 15px;
            }

            .table-title {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .table-title::after {
                width: 100px;
            }

            thead th {
                font-size: 13px;
                padding: 12px 10px;
            }

            tbody td {
                font-size: 12px;
                padding: 12px 10px;
            }

            /* Show scroll indicator on mobile */
            .table-wrapper::after {
                content: '→ Scroll';
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(0, 0, 0, 0.7);
                color: white;
                padding: 5px 10px;
                border-radius: 4px;
                font-size: 11px;
                pointer-events: none;
                opacity: 0.8;
            }
        }

        @media (max-width: 480px) {
            .table-container {
                padding: 15px 10px;
            }

            .table-title {
                font-size: 16px;
            }

            thead th {
                font-size: 12px;
                padding: 10px 8px;
            }

            tbody td {
                font-size: 11px;
                padding: 10px 8px;
            }
        }