.table-premium {
    width: 100%;
    border-collapse: collapse;
}
.table-premium th, .table-premium td {
    padding: 16px 20px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
    white-space: nowrap;
}
.table-premium th {
    background: var(--white);
    border-bottom: 2px solid #e5e7eb;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--black);
}
.table-premium td { 
    font-size: 0.9rem; 
}

@media (max-width: 768px) {
    .table-premium th, .table-premium td {
        padding: 8px 6px;
        font-size: 0.65rem;
        white-space: normal; /* Cho phép xuống hàng để vừa màn hình */
        word-break: break-word;
    }
    .table-premium th {
        font-size: 0.6rem;
    }
    .table-premium td {
        font-size: 0.7rem;
    }
}

.table-premium tr:hover td { 
    background: rgba(0, 51, 153, 0.03);
}
.table-premium tr:last-child td {
    border-bottom: none;
}
