    .custom-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 2px;
        background: white;
        border-radius: 10px;
        overflow-x: scroll;
        max-height: 500px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .custom-table th,
    .custom-table td {
        padding: 2px;
        border-bottom: 1px solid #ddd;
        font-size: 16px;
    }

    .custom-table th {
        background-color: #2A47AA;
        color: white;
        text-transform: uppercase;
    }

    .custom-table tr {
        max-height: 10px !important;
    }

    .custom-table tr:hover {
        background-color: #f1f1f1;
    }