/* ─── Scroll horizontal (compartido) ───────────────────────────── */
.ruta-intervenciones-repeater,
.rutas-form-repeater {
    overflow-x: auto;
    max-width: 100%;
}

.ruta-intervenciones-repeater table,
.rutas-form-repeater table {
    min-width: max-content;
}

/* Permitir que los padres del repeater no corten el overflow */
.fi-fo-field-content,
.fi-fo-field-content-ctn,
.fi-fo-field-content-col {
    overflow: visible;
}


/* ─── Validación de Rutas (ruta-intervenciones-repeater) ────────── */

/* Columna Tarea: 380px con textarea */
.ruta-intervenciones-repeater td:first-child {
    width: 380px;
    min-width: 380px;
}

.ruta-intervenciones-repeater td:first-child textarea {
    width: 100%;
    resize: none;
}


/* ─── Crear / Editar Rutas (rutas-form-repeater) ────────────────── */

/* Columna Tarea: 320px en create, 500px en edit (el ancho lo define el TableColumn,
   acá solo aseguramos que el select no fuerce un mínimo mayor) */
.rutas-form-repeater td:first-child {
    min-width: 0;
}


/* ─── Filas de cliente bloqueado ────────────────────────────────── */
tr.row-bloqueado td {
    background-color: rgb(254 226 226) !important; /* red-200 */
}

.dark tr.row-bloqueado td {
    background-color: rgb(127 29 29 / 0.4) !important; /* red-900/40 */
}
