.custom-table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(210, 213, 216, 1);

    --bs-table-hover-bg: rgba(216, 216, 216, 0.062);
    --bs-table-hover-color: rgba(210, 213, 216, 1);

    --bs-table-striped-bg: rgba(15, 32, 46, 1);
    --bs-table-striped-color: rgba(210, 213, 216, 1);
    
    --bs-table-active-bg: rgba(15, 32, 46, 1);
    --bs-table-active-color: rgba(210, 213, 216, 1);


    font-family: 'Source Sans Pro';
    font-weight: lighter;

    border-collapse: collapse;
    
    width: 100%;

  }

    .custom-table thead {
        border : none;
    }

    .custom-table thead th {
        border-bottom: 0.5px solid rgba(86, 110, 129, 1);
        border-top: none;
        border-left: none;
        border-right: none;

    }

    .custom-table tbody tr {
        border-bottom: 0.5px solid rgba(86, 110, 129, 1);
        font-size: 14px;
    }

    .custom-table td,
    .custom-table th {
        padding: 4px; /* Adjust padding to balance content alignment */
        vertical-align: middle; /* Align text vertically */
        /* border: none; Ensure no borders cause visual issues */
    }

    .custom-table tbody tr:last-child {
        border-bottom: none;
    }

    .custom-table td {
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }