/* Estilos modernos para la tabla */
.table-container {
    max-width: 1200px;
    margin: 120px auto 50px auto;
    padding: 0 20px;
    min-height: 60vh;
}

.table-title {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-turquesa-oscuro);
    font-size: 2.5rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.styled-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    min-width: 800px;
}

.styled-table thead tr {
    background: linear-gradient(135deg, var(--color-turquesa-oscuro) 0%, var(--color-turquesa-claro) 100%);
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 18px 25px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: rgba(95, 190, 199, 0.05);
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--color-turquesa-oscuro);
}

.styled-table tbody tr:hover {
    background-color: rgba(95, 190, 199, 0.15);
    color: var(--color-turquesa-oscuro);
    transform: scale(1.002);
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #d4edda;
    color: #155724;
}
