/* tables.css — Dark theme table styles */

.table-dark th {
    background: #0a0a0a;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.table-dark td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-dark tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
