.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* Main Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    border: 1px solid #e5e7eb;
}

/* Header */
table th {
    background: #ff2d00;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 14px;
    border: 1px solid #e5e7eb;
}

/* Table Cells */
table td {
    padding: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    border: 1px solid #e5e7eb;
    vertical-align: top;
}

/* Alternate Rows */
table tr:nth-child(even) {
    background: #f9fbff;
}

/* Hover Effect */
table tr:hover {
    background: #eef4ff;
    transition: 0.2s ease;
}

/* Strong Titles */
table td strong {
    color: #ff2d00;
}

/* Paragraph Styling */
table td p {
    margin: 8px 0;
    font-size: 14px;
}

/* Link Style */
table a {
    color: #ff2d00;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width:992px) {

    table th,
    table td {
        font-size: 13px;
        padding: 12px;
    }
}

/* Mobile Scroll */
@media (max-width:768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 6px;
    }

    table th,
    table td {
        font-size: 12px;
        padding: 10px;
    }
}

/* Small Mobile Devices */
@media (max-width:480px) {

    table th,
    table td {
        font-size: 11px;
        padding: 8px;
    }
}