table {
    width: 100%;
    color: #222;
    background-color: #fff;
    border-collapse: collapse;
    font-size: 0.9rem;
    border-spacing: 0;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

th {
    padding: 12px 10px;
    background-color: #f4f4f4;
    color: #111;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: left;
    text-transform: capitalize;
    border-bottom: 2px solid #ccc;
    height: 44px;
    white-space: nowrap;
}

tr {
    background-color: #fff;
    transition: background-color 0.2s ease;
}

tr:nth-child(even) {
    background-color: #fafafa;
}

tr:hover {
    background-color: #eaf3f9;
    color: #000;
}

td {
    font-size: 0.9rem;
    padding: 10px 8px;
    height: 44px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
    white-space: nowrap;
}

td:last-child {
    border-right: none;
}

.trC {
    background-color: #f9f9f9;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    table {
        font-size: 0.82rem;
    }

    th, td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }

    tr:hover {
        background-color: #f5f5f5;
    }

    td {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        white-space: normal;
    }
}