/* ============================================================
   SISTEMA DE RESERVA DE SALAS — Estilos globales
   Paleta basada en el diseño del wireframe aprobado
   ============================================================ */

:root {
  --surface-0:      #f1efe8;
  --surface-1:      #f8f7f4;
  --surface-2:      #ffffff;
  --text-primary:   #1a1a18;
  --text-secondary: #6b6a66;
  --text-muted:     #9b9a96;
  --border:         rgba(0,0,0,0.09);
  --border-strong:  rgba(0,0,0,0.16);
  --bg-accent:      #e6f1fb;
  --text-accent:    #185fa5;
  --border-accent:  #85b7eb;
  --fill-accent:    #378add;
  --bg-success:     #eaf3de;
  --text-success:   #3b6d11;
  --border-success: #97c459;
  --bg-warning:     #faeeda;
  --text-warning:   #854f0b;
  --border-warning: #ef9f27;
  --bg-danger:      #fcebeb;
  --text-danger:    #a32d2d;
  --border-danger:  #f09595;
  --bg-pro:         #eeedfe;
  --text-pro:       #534ab7;
  --border-pro:     #afa9ec;
  --radius:         8px;
  --font-sans:      -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--surface-0);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: var(--text-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── Navegación ─────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 52px;
  background: var(--surface-2);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  text-decoration: none;
}
.nav-icon { font-size: 20px; color: var(--text-accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover { background: var(--surface-1); color: var(--text-primary); text-decoration: none; }
.nav-link.active { color: var(--text-primary); font-weight: 500; }
.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-user-info { display: flex; flex-direction: column; line-height: 1.2; }
.nav-user-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.nav-user-area { font-size: 11px; color: var(--text-muted); }

/* Dropdown admin */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--surface-2);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  min-width: 180px;
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--surface-1); text-decoration: none; }

/* ── Avatar ─────────────────────────────────────────────────── */
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-accent);
  flex-shrink: 0;
}

/* ── Layout principal ───────────────────────────────────────── */
.main-content { min-height: calc(100vh - 52px); }
.page-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Botones ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 400;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s;
}
.btn:hover { background: var(--surface-1); text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--text-primary); color: var(--surface-2); border-color: var(--text-primary); }
.btn-primary:hover { background: #333; }
.btn-ghost { border-color: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--text-primary); background: var(--surface-1); }
.btn-danger { border-color: var(--border-danger); color: var(--text-danger); background: var(--bg-danger); }
.btn-danger:hover { background: #f7c1c1; }
.btn-sm { padding: 4px 10px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }
.btn-ms {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 9px; border: 0.5px solid var(--border-strong);
  border-radius: var(--radius); font-size: 13px; background: #fff;
  color: var(--text-primary); cursor: pointer; text-decoration: none;
}
.btn-ms:hover { background: var(--surface-1); text-decoration: none; }
.btn-approve {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border: 0.5px solid var(--border-success);
  background: var(--bg-success); color: var(--text-success);
  border-radius: var(--radius); font-size: 12px; cursor: pointer;
}
.btn-reject {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border: 0.5px solid var(--border-danger);
  background: var(--bg-danger); color: var(--text-danger);
  border-radius: var(--radius); font-size: 12px; cursor: pointer;
}
.icon-btn { border: none; background: none; cursor: pointer; color: var(--text-muted); font-size: 16px; padding: 2px 4px; }
.icon-btn:hover { color: var(--text-primary); }
.btn-row { display: flex; gap: 8px; margin-top: 16px; justify-content: flex-end; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; padding: 2px 8px; border-radius: var(--radius); font-weight: 500;
}
.badge-green  { background: var(--bg-success); color: var(--text-success); }
.badge-amber  { background: var(--bg-warning); color: var(--text-warning); }
.badge-blue   { background: var(--bg-accent);  color: var(--text-accent);  }
.badge-red    { background: var(--bg-danger);  color: var(--text-danger);  }
.badge-gray   { background: var(--surface-1);  color: var(--text-muted); border: 0.5px solid var(--border); }
.badge-purple { background: var(--bg-pro);     color: var(--text-pro);     }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.card-title { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 14px; }

/* ── Formularios ────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-label { font-size: 12px; color: var(--text-secondary); }
.form-input {
  padding: 8px 10px;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--surface-2);
  color: var(--text-primary);
  width: 100%;
  transition: border-color .15s;
}
.form-input:focus { outline: none; border-color: var(--fill-accent); }
.form-input[readonly] { background: var(--surface-1); color: var(--text-secondary); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.form-section-title {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px;
  margin: 16px 0 8px; padding-bottom: 6px;
  border-bottom: 0.5px solid var(--border);
}
.hint { font-size: 12px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 5px; }
.hint-inline { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.comment-box { width: 100%; resize: none; background: var(--surface-1); margin-bottom: 10px; }

/* ── Alertas ────────────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px;
}
.alert-danger  { background: var(--bg-danger);  color: var(--text-danger);  border: 0.5px solid var(--border-danger);  }
.alert-success { background: var(--bg-success); color: var(--text-success); border: 0.5px solid var(--border-success); }
.alert-info    { background: var(--bg-accent);  color: var(--text-accent);  border: 0.5px solid var(--border-accent);  }
.alert-inline  { margin-top: 8px; font-size: 12px; }

/* ── Stepper ────────────────────────────────────────────────── */
.stepper {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px; padding: 0 4px;
}
.step-item { display: flex; align-items: center; gap: 7px; font-size: 12px; }
.step-circle {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; flex-shrink: 0;
  background: var(--surface-1); color: var(--text-muted);
  border: 0.5px solid var(--border-strong);
}
.step-item.active  .step-circle { background: var(--bg-accent); color: var(--text-accent); border-color: var(--border-accent); }
.step-item.done    .step-circle { background: var(--text-primary); color: var(--surface-2); border-color: var(--text-primary); }
.step-label { color: var(--text-muted); font-size: 12px; white-space: nowrap; }
.step-item.active .step-label { color: var(--text-primary); font-weight: 500; }
.step-item.done   .step-label { color: var(--text-secondary); }
.step-line { flex: 1; height: 0.5px; background: var(--border); margin: 0 6px; }
.step-line.done { background: var(--text-primary); }

/* Pasos del wizard */
.paso { display: none; }
.paso.active { display: block; }

/* ── Búsqueda / filtros ─────────────────────────────────────── */
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
}
.filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 12px; color: var(--text-muted); }
.filter-chip {
  padding: 4px 12px; border: 0.5px solid var(--border);
  border-radius: 20px; font-size: 12px; cursor: pointer;
  color: var(--text-secondary); background: var(--surface-1);
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--border-accent); color: var(--text-accent); }
.filter-chip.active { background: var(--bg-accent); color: var(--text-accent); border-color: var(--border-accent); }

/* ── Paso 2: Grilla de salas ────────────────────────────────── */
.paso2-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.resumen-busqueda {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-secondary);
  background: var(--surface-1); border-radius: var(--radius);
  padding: 6px 12px; border: 0.5px solid var(--border);
}
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.results-count { font-size: 13px; color: var(--text-secondary); }
.sala-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.sala-card {
  background: var(--surface-2); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 12px 14px; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.sala-card:hover { border-color: var(--border-accent); }
.sala-card.unavailable { opacity: .45; cursor: not-allowed; }
.sala-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.sala-name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.sala-loc  { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.sala-cap  { font-size: 12px; color: var(--text-secondary); margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.sala-next { font-size: 11px; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.section-sep {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px;
  margin: 16px 0 10px; padding-bottom: 6px;
  border-bottom: 0.5px solid var(--border);
}
.ocupadas-grid { grid-template-columns: 1fr 1fr; }

/* Equipamiento */
.equip-row  { display: flex; flex-wrap: wrap; gap: 4px; }
.equip-tag  { font-size: 11px; background: var(--surface-1); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 2px 7px; color: var(--text-secondary); }

/* ── Paso 3: Formulario de reserva ──────────────────────────── */
.selected-room-banner {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-accent); border: 0.5px solid var(--border-accent);
  border-radius: var(--radius); padding: 10px 12px; margin-bottom: 16px;
}
.banner-room { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.banner-sub  { font-size: 12px; color: var(--text-secondary); }
.link-cambiar { font-size: 12px; color: var(--text-accent); cursor: pointer; display: flex; align-items: center; gap: 4px; white-space: nowrap; }

/* Participantes */
.participants-box { border: 0.5px solid var(--border-strong); border-radius: var(--radius); overflow: hidden; }
.participant-row  { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-bottom: 0.5px solid var(--border); }
.participant-row:last-child { border-bottom: none; }
.add-participant-row {
  display: flex; align-items: center; gap: 6px; padding: 8px 10px;
  font-size: 12px; color: var(--text-muted); cursor: pointer;
  border-bottom: 0.5px solid var(--border);
}
.add-participant-row:hover { background: var(--surface-1); color: var(--text-primary); }
.add-participant-row:last-child { border-bottom: none; }

/* Requerimientos */
.check-group { display: flex; flex-wrap: wrap; gap: 8px; }
.check-item {
  display: flex; align-items: center; gap: 6px; font-size: 12px;
  color: var(--text-primary); background: var(--surface-1);
  border: 0.5px solid var(--border-strong); border-radius: var(--radius);
  padding: 6px 10px; cursor: pointer;
}
.check-item:hover { border-color: var(--border-accent); }
.check-item input { accent-color: var(--fill-accent); }

/* ── Paso 4: Confirmación ───────────────────────────────────── */
.confirm-wrap { text-align: center; padding: 24px 0; }
.confirm-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-warning); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.confirm-title { font-size: 18px; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.confirm-sub   { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.summary-card {
  background: var(--surface-1); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 14px; text-align: left;
  max-width: 480px; margin: 0 auto 20px;
}
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-bottom: 0.5px solid var(--border); }
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--text-secondary); }
.summary-val   { color: var(--text-primary); font-weight: 500; text-align: right; }

/* Timeline */
.timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 480px; margin: 20px auto 0; }
.tl-step   { display: flex; flex-direction: column; align-items: center; min-width: 80px; }
.tl-circle {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-bottom: 6px;
}
.tl-done    { background: var(--text-primary); color: var(--surface-2); }
.tl-active  { background: var(--bg-warning); color: var(--text-warning); border: 1.5px solid var(--border-warning); }
.tl-pending { background: var(--surface-1); color: var(--text-muted); border: 0.5px solid var(--border); }
.tl-label   { font-size: 11px; color: var(--text-secondary); text-align: center; line-height: 1.3; }
.tl-connector { flex: 1; height: 0.5px; background: var(--border); margin-top: 14px; }
.tl-connector.tl-done { background: var(--text-primary); }

/* ── Mis reservas / Comunicaciones ──────────────────────────── */
.res-card, .req-card {
  background: var(--surface-2); border: 0.5px solid var(--border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.res-card-head, .req-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 12px 14px; gap: 12px;
}
.res-title, .req-title { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.res-meta,  .req-meta  { font-size: 12px; color: var(--text-secondary); margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.res-tags { padding: 0 14px 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.req-body  { padding: 0 14px 14px; border-top: 0.5px solid var(--border); padding-top: 12px; }
.req-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.req-field-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.req-field-val   { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.req-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.action-row { display: flex; gap: 8px; }

/* ── Admin ──────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 180px 1fr; gap: 20px; }
.sidebar-admin {
  background: var(--surface-2); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 8px 0; align-self: start;
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; font-size: 13px; color: var(--text-secondary);
  border-left: 2px solid transparent; text-decoration: none;
}
.sidebar-item:hover { background: var(--surface-1); color: var(--text-primary); text-decoration: none; }
.sidebar-item.active { color: var(--text-primary); font-weight: 500; border-left-color: var(--text-primary); }
.admin-content { min-width: 0; }
.ms-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg-accent); border: 0.5px solid var(--border-accent);
  border-radius: var(--radius); padding: 12px 14px; margin-bottom: 16px;
}

/* Tabla admin */
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th {
  text-align: left; font-size: 11px; font-weight: 500; color: var(--text-muted);
  padding: 8px 10px; border-bottom: 0.5px solid var(--border);
  background: var(--surface-1);
}
.table td { padding: 10px; border-bottom: 0.5px solid var(--border); color: var(--text-primary); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--surface-1); }

/* Sala admin card */
.sala-admin-card {
  background: var(--surface-2); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 10px;
}
.sala-admin-card.inactiva { opacity: .55; }
.sala-admin-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }

/* Insumos grid */
.insumo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 8px; }
.insumo-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-2); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 10px 12px;
}
.insumo-card.inactivo { opacity: .5; }
.insumo-name { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-primary); }
.insumo-actions { display: flex; gap: 2px; }

/* Integraciones */
.integ-card { background: var(--surface-2); border: 0.5px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.integ-card-head { display: flex; align-items: flex-start; gap: 12px; }
.integ-title { font-size: 14px; font-weight: 500; color: var(--text-primary); display: flex; align-items: center; }
.integ-sub   { font-size: 12px; color: var(--text-secondary); margin-top: 3px; }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center; z-index: 500;
}
.modal-card {
  background: var(--surface-2); border-radius: 12px;
  border: 0.5px solid var(--border-strong);
  padding: 20px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; font-size: 15px; font-weight: 500; color: var(--text-primary);
}

/* ── Login ──────────────────────────────────────────────────── */
.login-body   { background: var(--surface-0); display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-wrap   { width: 100%; max-width: 400px; padding: 16px; }
.login-card   { background: var(--surface-2); border: 0.5px solid var(--border); border-radius: 16px; padding: 32px; }
.login-header { text-align: center; margin-bottom: 24px; }
.login-title  { font-size: 18px; font-weight: 500; color: var(--text-primary); margin: 10px 0 4px; }
.login-sub    { font-size: 13px; color: var(--text-secondary); }
.login-form .form-group { margin-bottom: 12px; }
.login-divider { text-align: center; margin: 16px 0; font-size: 12px; color: var(--text-muted); position: relative; }
.login-divider::before, .login-divider::after {
  content: ''; position: absolute; top: 50%; width: 44%; height: 0.5px; background: var(--border);
}
.login-divider::before { left: 0; }
.login-divider::after  { right: 0; }
.login-footer { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 20px; }

/* ── Empty state ────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 48px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state i { font-size: 36px; color: var(--text-muted); }
.empty-state p { font-size: 14px; color: var(--text-secondary); }

/* ── Animaciones ────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .sala-grid, .form-row-2, .admin-layout { grid-template-columns: 1fr; }
  .sidebar-admin { display: none; }
  .stepper .step-label { display: none; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-grid > button { grid-column: 1/-1; }
  .timeline { gap: 0; }
  .tl-label { font-size: 10px; }
}
