.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* Table Wrapper for Responsive Scroll */
table[role="table"] {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

/* Table Header */
table[role="table"] thead {
    background-color: #ff2d00;
    color: #ffffff;
}

table[role="table"] thead th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

/* Table Body */
table[role="table"] tbody td {
    padding: 14px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Zebra Striping */
table[role="table"] tbody tr:nth-child(even) {
    background: #f7f9fc;
}

/* Hover Effect */
table[role="table"] tbody tr:hover {
    background: #eef4ff;
    transition: 0.2s ease;
}

/* Strong text styling */
table[role="table"] strong {
    color: #ff2d00;
}

/* Border styling */
table[role="table"],
table[role="table"] th,
table[role="table"] td {
    border: 1px solid #e2e6ea;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    table[role="table"] {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 6px;
    }

    table[role="table"] thead th,
    table[role="table"] tbody td {
        padding: 12px;
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {

    table[role="table"] thead th,
    table[role="table"] tbody td {
        padding: 10px;
        font-size: 12px;
    }
}