.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* Main Table Styling */
.tax-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    border: 1px solid #e5e5e5;
}

/* Table Cells */
.tax-table th,
.tax-table td {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    border: 1px solid #e6e6e6;
}

/* Header Row */
.tax-table th {
    background: #ff2d00;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* Highlight Rows */
.tax-table .bg-clr {
    background: #eef3ff;
    font-weight: 600;
}

/* Alternate Rows */
.tax-table tr:nth-child(even) {
    background: #fafafa;
}

/* Hover Effect */
.tax-table tr:hover {
    background: #f1f6ff;
    transition: 0.2s;
}

/* Notes Section */
.tax-table tr td[colspan="5"] {
    font-size: 13px;
}

/* Superscript */
.tax-table sup {
    font-size: 11px;
}

/* Responsive Wrapper */
@media (max-width:991px) {

    .tax-table th,
    .tax-table td {
        font-size: 13px;
        padding: 10px;
    }
}

/* Mobile Scroll */
@media (max-width:768px) {

    .tax-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 6px;
    }

    .tax-table th,
    .tax-table td {
        font-size: 12px;
        padding: 9px;
    }
}

/* Small Devices */
@media (max-width:480px) {

    .tax-table th,
    .tax-table td {
        font-size: 11px;
        padding: 8px;
    }
}