/* TABLAS */
.table-container {
    max-width: 900px;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #f9fafb;
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
    border-bottom: 2px solid #e5e7eb;
    text-align: left;
}

td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #f9fafb;
}

.index-col {
    width: 50px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
}

.email-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.email-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.name-cell {
    text-transform: capitalize;
}