/* === Tablas y Elementos de Datos === */
.table-container {
    display: flex;
    justify-content: center;
}

.table {
    width: 90%;
    border-collapse: collapse;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.table th, .table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.table th {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}