/* ============================================
   TABLES - Tablas de datos y resultados
   ============================================ */

table {
    transition: none;
}

table tr {
    transition: background-color 0.1s ease;
}

table tr:nth-child(even) {
    background: var(--gray-50);
}

table tr:hover {
    background: var(--primary-light);
}

table th {
    background: var(--accent);
    color: white;
    font-weight: 600;
}

table td {
    color: var(--gray-800);
}
