/* General */
body {
    background: #efefef;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 25px; /* aumenta tamaño general */
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px; /* un poco más grande */
    text-align: center;
    border: 1px solid #ccc;
    font-size: 1em; /* hereda tamaño del body */
}

/* Filas alternadas blanco/gris claro */
tr:nth-child(odd) {
    background: #fff;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

/* Estilo de cabecera */
th {
    background: #e0e0e0;
    font-weight: 600;
    font-size: 1.1em;
}

/* Checkbox y select centrados */
form {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Column toggle */
.column-toggle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.toggle-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1em;
}

.toggle-item i {
    transition: opacity 0.2s;
}




.toggle-icon.off {
    opacity: 0.4; /* ojo apagado */
    transition: opacity 0.3s;
}



/* Responsive */
@media (max-width: 768px) {
    table, th, td {
        font-size: 27px; /* más grande en celular */
    }
    .column-toggle-container {
        flex-direction: column;
    }
    /* Ocultar banner en celular */
    .banner {
        display: none;
    }
}
