/* ============================================
   Módulo Tabla Horario — Estilos
   v2.0.0 — Módulo tipo texto con editor WYSIWYG
   ============================================ */

/* --- Contenedor del módulo --- */
.horario-module {
    margin-bottom: 20px;
}

/* --- Tablas dentro del módulo --- */
.horario-module table {
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
}

.horario-module table td,
.horario-module table th {
    border: 1px solid #999;
    padding: 4px 14px;
    text-align: center;
    font-size: 0.92em;
    vertical-align: middle;
}

.horario-module table th {
    font-weight: 700;
}

/* --- Caption (título dentro de la tabla, TinyMCE lo genera como caption) --- */
.horario-module table caption {
    caption-side: top;
    text-align: left;
    font-style: italic;
    font-weight: 600;
    padding: 4px 8px;
    font-size: 0.95em;
}

/* --- Responsive: scroll horizontal en móvil --- */
@media (max-width: 768px) {
    .horario-module {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .horario-module table {
        min-width: 250px;
    }
}
