/**
 * TABELAS E LISTAGENS
 * Estilos para as áreas de Alunos e Histórico.
 */

.table-container {
    background: var(--white);
    border-radius: 12px;
    overflow-x: auto;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

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

th {
    background-color: #f8f9fa;
    color: var(--text-gray);
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gray-border);
}

td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

tr:hover td {
    background-color: #f6f7f9;
}

/* Botões de Ação na Tabela */
.btn-action {
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.btn-delete {
    color: var(--error);
    background: rgba(220, 53, 69, 0.1);
}

.btn-delete:hover {
    background: var(--error);
    color: white;
}
