/* gst-styles.css */
.gst-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    text-align: left;
}

.gst-data-table th, .gst-data-table td {
    padding: 12px 15px;
    border: none; /* Remove borders */
}

.gst-data-table thead tr {
    background-color: #F36503;
    color: #ffffff;
    text-align: left;
}

.gst-data-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.gst-data-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.gst-data-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.gst-data-table tbody tr:hover {
    background-color: #f1f1f1;
}

.gst-data-table .negative {
    color: red;
}

@media screen and (max-width: 600px) {
    .gst-data-table thead {
        display: none;
    }

    .gst-data-table, .gst-data-table tbody, .gst-data-table tr, .gst-data-table td {
        display: block;        
    }

    .gst-data-table tr {
        margin-bottom: 15px;
    }

    .gst-data-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none; /* Remove borders */
    }

    .gst-data-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 5px;
        font-weight: bold;
        text-align: left;
    }
}
