.responsive-table tbody tr.active-row {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    background-color: #ffffff;
}


.responsive-table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin-top: 25px;
    padding: 0;
    width: 100%;
    /* table-layout: fixed; */
    color: #000000;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    display: block;
    overflow-x: auto;
}

.responsive-table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

.responsive-table th,
.responsive-table td {
    padding: .625em;
    text-align: left;
}

.responsive-table th {
    font-size: .85em;
    letter-spacing: .1em;
    font-size: 15px;
    /*text-transform: uppercase;*/
}

.table-responsive {
    overflow-x: auto;
    overflow-y: unset;
    position: relative;
  }

  .table-responsive .table tbody tr:nth-child(even) td:not(:first-child) {
    background-color: #e9ecef; /* Light gray for even rows */
  }


  /* Fix the first column */
  .table-responsive .table tbody td:first-child,
  .table-responsive .table thead th:first-child {
    position: sticky;
    left: 0;
    background-color: #ddd;
    z-index: 1;
  }
  
  .table-responsive .table thead th {
    top: 0;
    background-color: #ddd;
  }

@media screen and (max-width: 600px) {
    .responsive-table {
        border: 0;
    }

    .responsive-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        /* overflow: hidden; */
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .responsive-table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .responsive-table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    .responsive-table td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .responsive-table td:last-child {
        border-bottom: 0;
    }
}