.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background: white;
    box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f3f7;
}

.table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: #fafbfc;
    white-space: nowrap;
    line-height: 1.5;
}

.table td {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.table tbody tr {
    transition: background var(--transition-fast);
}

.table tbody tr:hover {
    background: #fafbfc;
}

.table tbody tr:last-child td {
    border-bottom: none;
}
