/* ═══════════════════════════════════════════════════════════════════════════
   IVC Informes – Frontend CSS
   Diseño institucional: tipografía profesional, paleta azul gobierno
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --ivc-primary:       #1a3a5c;
  --ivc-primary-dk:    #0f2540;
  --ivc-primary-lt:    #2c5282;
  --ivc-accent:        #c9a227;
  --ivc-success:       #1e8449;
  --ivc-danger:        #c0392b;
  --ivc-warning:       #d35400;
  --ivc-bg:            #f5f7fa;
  --ivc-surface:       #ffffff;
  --ivc-border:        #c5d3e0;
  --ivc-text:          #1a2433;
  --ivc-text-muted:    #64748b;
  --ivc-radius:        8px;
  --ivc-radius-sm:     4px;
  --ivc-shadow:        0 2px 12px rgba(26,58,92,.10);
  --ivc-shadow-md:     0 4px 24px rgba(26,58,92,.14);
  --ivc-font-head:     'Roboto Slab', Georgia, serif;
  --ivc-font-body:     'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --ivc-max-w:         860px;
}

/* ── Wrapper principal ─────────────────────────────────────────────────────── */
.ivc-wrap {
  max-width: var(--ivc-max-w);
  margin: 32px auto;
  padding: 0 20px;
  font-family: var(--ivc-font-body);
  color: var(--ivc-text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ENCABEZADO DEL FORMULARIO
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-form-header {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--ivc-primary);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--ivc-radius) var(--ivc-radius) 0 0;
  margin-bottom: 0;
}
.ivc-logo-badge {
  width: 52px; height: 52px;
  background: var(--ivc-accent);
  color: var(--ivc-primary-dk);
  font-family: var(--ivc-font-head);
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--ivc-radius-sm);
  flex-shrink: 0;
  letter-spacing: 1px;
}
.ivc-form-header__title {
  font-family: var(--ivc-font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 3px;
  color: #fff;
}
.ivc-form-header__sub {
  font-size: 13px;
  opacity: .75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECCIONES
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-section {
  background: var(--ivc-surface);
  border: 1px solid var(--ivc-border);
  border-top: none;
  padding: 28px;
}
.ivc-section + .ivc-section {
  border-top: 1px solid var(--ivc-border);
  margin-top: -1px;
}
.ivc-section:last-of-type {
  border-radius: 0 0 var(--ivc-radius) var(--ivc-radius);
}
.ivc-section__title {
  font-family: var(--ivc-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ivc-primary);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ivc-section__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--ivc-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.ivc-section__badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--ivc-font-body);
  background: #e8eef5;
  color: var(--ivc-primary);
  padding: 2px 10px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GRILLA Y CAMPOS
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-grid { display: grid; gap: 16px; }
.ivc-grid--2 { grid-template-columns: 1fr 1fr; }
.ivc-field--full { grid-column: 1 / -1; }

.ivc-field { display: flex; flex-direction: column; gap: 6px; }
.ivc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ivc-primary);
}
.ivc-req { color: var(--ivc-danger); }

.ivc-input,
.ivc-select,
.ivc-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--ivc-border);
  border-radius: var(--ivc-radius-sm);
  font-family: var(--ivc-font-body);
  font-size: 14px;
  color: var(--ivc-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.ivc-input:focus,
.ivc-select:focus,
.ivc-textarea:focus {
  outline: none;
  border-color: var(--ivc-primary-lt);
  box-shadow: 0 0 0 3px rgba(44,82,130,.18);
}
.ivc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a5c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 34px;
}
.ivc-textarea { min-height: 100px; resize: vertical; }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOQUE INTERVENCIÓN (FORMULARIO)
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-intervenciones-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.ivc-intervencion {
  border: 1.5px solid var(--ivc-border);
  border-radius: var(--ivc-radius);
  background: #fff;
  box-shadow: var(--ivc-shadow);
  overflow: hidden;
  transition: box-shadow .2s;
}
.ivc-intervencion.ui-sortable-helper {
  box-shadow: var(--ivc-shadow-md);
  transform: rotate(1deg);
}
.ivc-intervencion.ui-sortable-placeholder {
  border: 2px dashed var(--ivc-primary-lt);
  background: #e8eef5;
  visibility: visible !important;
}

.ivc-intervencion__header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ivc-primary);
  color: #fff;
  padding: 10px 16px;
  user-select: none;
}
.ivc-intervencion__drag-handle {
  cursor: grab;
  opacity: .6;
  padding: 4px;
  flex-shrink: 0;
}
.ivc-intervencion__drag-handle svg { width: 14px; height: 14px; }
.ivc-intervencion__drag-handle:active { cursor: grabbing; }
.ivc-intervencion__num {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}
.ivc-intervencion__actions { display: flex; gap: 6px; }
.ivc-intervencion__toggle,
.ivc-intervencion__delete {
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 4px;
  color: #fff;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.ivc-intervencion__toggle:hover { background: rgba(255,255,255,.25); }
.ivc-intervencion__delete:hover { background: rgba(192,57,43,.5); }
.ivc-intervencion__toggle svg,
.ivc-intervencion__delete svg { width: 14px; height: 14px; }
.ivc-intervencion__toggle svg { transition: transform .25s; }
.ivc-intervencion--collapsed .ivc-intervencion__toggle svg { transform: rotate(-90deg); }

.ivc-intervencion__body {
  padding: 20px;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease, opacity .3s;
}
.ivc-intervencion--collapsed .ivc-intervencion__body {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ZONA DE IMÁGENES
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-imagenes {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ivc-imagen-grupo {
  border: 1.5px solid var(--ivc-border);
  border-top: 3px solid var(--cat-color, var(--ivc-primary));
  border-radius: var(--ivc-radius-sm);
  padding: 12px;
  background: #fafbfc;
}
.ivc-imagen-grupo__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--cat-color, var(--ivc-primary));
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ivc-imagen-grupo__icon { font-size: 14px; }

.ivc-imagen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}
.ivc-imagen-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
}
.ivc-imagen-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ivc-imagen-item__remove {
  position: absolute;
  top: 2px; right: 2px;
  background: rgba(192,57,43,.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 11px;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  line-height: 1;
  padding: 0;
}
.ivc-imagen-item:hover .ivc-imagen-item__remove { display: flex; }

/* Zona de drop */
.ivc-upload-zone {
  border: 2px dashed var(--ivc-border);
  border-radius: var(--ivc-radius-sm);
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  position: relative;
}
.ivc-upload-zone:hover,
.ivc-upload-zone.drag-over {
  background: #e8eef5;
  border-color: var(--ivc-primary-lt);
}
.ivc-upload-zone__inner {
  pointer-events: none;
  color: var(--ivc-text-muted);
  font-size: 12px;
  line-height: 1.4;
}
.ivc-upload-zone__inner svg {
  width: 22px; height: 22px;
  margin-bottom: 5px;
  display: block;
  margin-inline: auto;
  stroke: var(--ivc-text-muted);
}
.ivc-upload-zone__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}
.ivc-upload-zone--loading {
  background: #e8eef5;
  pointer-events: none;
}
.ivc-upload-progress {
  height: 3px;
  background: var(--ivc-primary-lt);
  border-radius: 2px;
  margin-top: 5px;
  transition: width .3s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--ivc-radius-sm);
  font-family: var(--ivc-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .1s, box-shadow .2s;
  white-space: nowrap;
}
.ivc-btn svg { flex-shrink: 0; width: 15px; height: 15px; }
.ivc-btn:active { transform: translateY(1px); }

.ivc-btn--primary {
  background: var(--ivc-primary);
  color: #fff;
  border-color: var(--ivc-primary);
}
.ivc-btn--primary:hover {
  background: var(--ivc-primary-dk);
  box-shadow: 0 4px 12px rgba(26,58,92,.25);
}
.ivc-btn--outline {
  background: transparent;
  color: var(--ivc-primary);
  border-color: var(--ivc-primary);
}
.ivc-btn--outline:hover { background: #e8eef5; }
.ivc-btn--ghost {
  background: transparent;
  color: var(--ivc-text-muted);
  border-color: var(--ivc-border);
}
.ivc-btn--ghost:hover { background: var(--ivc-bg); }
.ivc-btn--danger {
  background: #fde8e8;
  color: var(--ivc-danger);
  border-color: #f5c6c6;
}
.ivc-btn--danger:hover { background: #f5c6c6; }

.ivc-btn--add {
  width: 100%;
  justify-content: center;
  border-style: dashed;
  border-color: var(--ivc-primary-lt);
  color: var(--ivc-primary);
  background: #e8eef5;
  padding: 12px;
}
.ivc-btn--add:hover { background: #d4e0ef; }

.ivc-btn--lg { padding: 12px 28px; font-size: 15px; }
.ivc-btn--sm { padding: 6px 12px; font-size: 12px; }
.ivc-btn[disabled] { opacity: .6; cursor: not-allowed; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   ACCIONES DEL FORMULARIO
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NOTICES
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-notice {
  padding: 12px 16px;
  border-radius: var(--ivc-radius-sm);
  margin: 12px 0;
  font-size: 14px;
  border-left: 4px solid;
}
.ivc-notice--success { background: #e8f8f0; border-color: var(--ivc-success); color: #145a32; }
.ivc-notice--error   { background: #fde8e8; border-color: var(--ivc-danger);  color: #7b241c; }
.ivc-notice--warning { background: #fef3e2; border-color: var(--ivc-warning); color: #7d4300; }
.ivc-notice a        { color: inherit; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════════
   VISTA DEL INFORME (single)
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.ivc-action-bar__right { display: flex; gap: 8px; flex-wrap: wrap; }

.ivc-informe-doc {
  background: var(--ivc-surface);
  border: 1px solid var(--ivc-border);
  border-radius: var(--ivc-radius);
  box-shadow: var(--ivc-shadow);
  overflow: hidden;
}

/* ── Encabezado del documento ──────────────────────────────────────────── */
.ivc-doc-header {
  background: var(--ivc-primary);
  color: #fff;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ivc-doc-logo {
  width: 52px; height: 52px;
  background: var(--ivc-accent);
  color: var(--ivc-primary-dk);
  font-family: var(--ivc-font-head);
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--ivc-radius-sm);
  flex-shrink: 0;
}
.ivc-doc-header__org { margin-left: 14px; }
.ivc-doc-header__org strong { display: block; font-size: 14px; }
.ivc-doc-header__org span   { font-size: 12px; opacity: .75; }
.ivc-doc-header { display: flex; align-items: center; }
.ivc-doc-header__logo { display: flex; align-items: center; }
.ivc-doc-header__meta { margin-left: auto; text-align: right; }
.ivc-doc-header__num  { font-size: 11px; opacity: .7; display: block; }
.ivc-doc-header__date { font-family: var(--ivc-font-head); font-size: 16px; font-weight: 700; }

/* ── Título y tabla ────────────────────────────────────────────────────── */
.ivc-doc-title {
  font-family: var(--ivc-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivc-primary);
  text-align: center;
  padding: 24px 28px 0;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ivc-datos-tabla {
  width: calc(100% - 56px);
  margin: 0 28px 24px;
  border-collapse: collapse;
  font-size: 14px;
}
.ivc-datos-tabla th,
.ivc-datos-tabla td { border: 1px solid var(--ivc-border); padding: 8px 12px; }
.ivc-datos-tabla th {
  background: #e8eef5;
  color: var(--ivc-primary);
  font-weight: 600;
  width: 20%;
}
.ivc-divider { margin: 0 28px 24px; border-color: var(--ivc-border); }

/* ── Bloque de intervención (view) ─────────────────────────────────────── */
.ivc-interv-bloque {
  margin: 0 28px 28px;
  border: 1.5px solid var(--ivc-border);
  border-radius: var(--ivc-radius);
  overflow: hidden;
}
.ivc-interv-bloque__header {
  background: var(--ivc-primary);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ivc-interv-bloque__num {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ivc-font-head);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.ivc-interv-bloque__title {
  font-family: var(--ivc-font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.ivc-badge--tipo {
  margin-left: auto;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
}
.ivc-interv-bloque__body { padding: 18px; }

/* Texto blocks */
.ivc-interv-text-block { margin-bottom: 16px; }
.ivc-interv-text-block__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ivc-primary);
  text-transform: uppercase;
  letter-spacing: .4px;
  border-left: 3px solid var(--ivc-primary);
  padding-left: 8px;
  margin-bottom: 8px;
}
.ivc-interv-text-block__body {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

/* Galerías */
.ivc-galeria { margin-bottom: 16px; }
.ivc-galeria__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: var(--ivc-radius-sm);
  display: inline-block;
  margin-bottom: 8px;
  background: color-mix(in srgb, var(--gal-color) 15%, transparent);
  color: var(--gal-color);
}
.ivc-galeria__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.ivc-galeria__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--ivc-radius-sm);
  border: 1px solid var(--ivc-border);
  display: block;
  transition: transform .2s;
}
.ivc-galeria__item:hover img { transform: scale(1.02); }

/* Pie del documento */
.ivc-doc-footer {
  margin: 0 28px 28px;
  padding-top: 20px;
  border-top: 2px solid var(--ivc-primary);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ivc-doc-footer__firma-line {
  width: 160px;
  border-bottom: 1px solid var(--ivc-text);
  margin-bottom: 6px;
}
.ivc-doc-footer__firma p { margin: 2px 0; font-size: 13px; }
.ivc-doc-footer__firma-label { color: var(--ivc-text-muted); font-size: 12px; }
.ivc-doc-footer__info { text-align: right; font-size: 12px; color: var(--ivc-text-muted); }
.ivc-doc-footer__info p { margin: 2px 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   LISTADO DE INFORMES
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-listado-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.ivc-listado-header__title {
  font-family: var(--ivc-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivc-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ivc-badge {
  background: var(--ivc-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--ivc-font-body);
  padding: 2px 8px;
  border-radius: 20px;
}

.ivc-listado-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.ivc-card {
  background: var(--ivc-surface);
  border: 1.5px solid var(--ivc-border);
  border-radius: var(--ivc-radius);
  box-shadow: var(--ivc-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.ivc-card:hover { box-shadow: var(--ivc-shadow-md); transform: translateY(-2px); }

.ivc-card__top {
  background: var(--ivc-primary);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ivc-card__badge {
  background: var(--ivc-accent);
  color: var(--ivc-primary-dk);
  font-family: var(--ivc-font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
}
.ivc-card__meta { margin-left: auto; text-align: right; }
.ivc-card__year   { display: block; font-weight: 700; font-size: 15px; }
.ivc-card__intervs{ display: block; font-size: 11px; opacity: .75; }

.ivc-card__body { padding: 14px 16px; flex: 1; }
.ivc-card__title { font-family: var(--ivc-font-head); font-size: 14px; font-weight: 700; margin: 0 0 10px; }
.ivc-card__title a { color: var(--ivc-primary); text-decoration: none; }
.ivc-card__title a:hover { text-decoration: underline; }

.ivc-card__info {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  row-gap: 3px;
  font-size: 12px;
}
.ivc-card__info dt { color: var(--ivc-text-muted); font-weight: 600; }
.ivc-card__info dd { color: var(--ivc-text); margin: 0; }

.ivc-card__footer {
  border-top: 1px solid var(--ivc-border);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Estado vacío */
.ivc-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ivc-text-muted);
}
.ivc-empty-state svg { margin: 0 auto 16px; display: block; stroke: var(--ivc-border); }
.ivc-empty-state p   { margin-bottom: 16px; font-size: 15px; }

.ivc-empty { text-align: center; padding: 32px; color: var(--ivc-text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   SPINNER / LOADING
   ═══════════════════════════════════════════════════════════════════════════ */
.ivc-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ivc-spin .6s linear infinite;
  flex-shrink: 0;
}
@keyframes ivc-spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .ivc-grid--2       { grid-template-columns: 1fr; }
  .ivc-imagenes      { grid-template-columns: 1fr; }
  .ivc-form-header   { flex-direction: column; align-items: flex-start; }
  .ivc-action-bar    { flex-direction: column; align-items: flex-start; }
  .ivc-doc-header    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ivc-doc-footer    { flex-direction: column; gap: 16px; }
  .ivc-datos-tabla   { font-size: 12px; }
  .ivc-galeria__grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .ivc-interv-bloque { margin: 0 12px 20px; }
  .ivc-datos-tabla   { margin: 0 12px 20px; width: calc(100% - 24px); }
  .ivc-doc-title     { padding: 16px 12px 0; font-size: 16px; }
}

@media print {
  .ivc-action-bar,
  .ivc-btn { display: none !important; }
}
