:root {
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --text: #18181b;
  --muted: #71717a;
  --border: #e4e4e7;
  --accent: #2563eb;
  --positive: #15803d;
  --negative: #b91c1c;
  --radius: 8px;
  /* Paleta atardecer */
  --peach: #F5A480;
  --coral: #EF767A;
  --rose: #C0507C;
  --mauve: #585B8A;
  --deep-blue: #2E4A73;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

h1 { font-size: 1rem; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
h2 {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.muted { color: var(--muted); font-size: 0.82rem; }
.error { color: var(--negative); font-size: 0.85rem; }
.green { color: var(--positive); }
.red { color: var(--negative); }
.num { text-align: right; }

a { color: var(--accent); text-decoration: none; }

svg.icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -2px;
  flex-shrink: 0;
}

/* ── Topbar ───────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand svg.icon { width: 18px; height: 18px; }
.topbar-right { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }

/* Franja con la paleta de la app, guiño a la referencia visual */
.palette-stripe {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--peach) 0 20%,
    var(--coral) 20% 40%,
    var(--rose) 40% 60%,
    var(--mauve) 60% 80%,
    var(--deep-blue) 80% 100%
  );
  position: sticky;
  top: 53px;
  z-index: 9;
}

.container {
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Tarjetas KPI: las 5 en una sola línea ── */
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
@media (max-width: 700px) { .cards { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.card-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card-value {
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.card-note { font-size: 0.7rem; color: var(--muted); line-height: 1.3; }
.card-note.delta-up { color: var(--positive); }
.card-note.delta-down { color: var(--negative); }

.card, .panel { transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.card:hover, .panel:hover { border-color: #d4d4d8; box-shadow: 0 2px 8px rgba(24, 24, 27, 0.04); }
.card.clickable { cursor: pointer; }
.card.clickable:hover { border-color: var(--deep-blue); }
.card.clickable:hover .card-label::after { content: ' → ver movimientos'; text-transform: none; letter-spacing: 0; font-weight: 500; }

.chart-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
}

/* Asignación bajo la dona: consumo vs ahorro/inversión/deuda */
.allocation-line { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; padding-top: 0.7rem; border-top: 1px solid var(--border); }
.alloc-chip { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; color: #3f3f46; font-variant-numeric: tabular-nums; }
.alloc-chip i { width: 9px; height: 9px; border-radius: 3px; }
.alloc-consumo i { background: var(--coral); }
.alloc-ahorro i { background: var(--mauve); }
.alloc-inversion i { background: var(--deep-blue); }
.alloc-deuda i { background: var(--peach); }
.panel-hint { margin: 0.2rem 0 0; font-size: 0.76rem; }

/* Meta de ahorro: barra en malva, completa en azul profundo */
.progress-fill.goal { background: var(--mauve); }
.progress-fill.goal.done { background: var(--deep-blue); }

td.annualized { font-weight: 600; color: var(--rose); }

.apikey-output {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  word-break: break-all;
  user-select: all;
}
code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.05rem 0.3rem;
}

/* ── Paneles y gráficas ───────────────── */
.panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.panel-header h2 { margin: 0; }
.charts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.chart-box { position: relative; height: 250px; }
@media (max-width: 800px) { .charts { grid-template-columns: 1fr; } }

/* ── Botones y formularios ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 6px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.1s ease, border-color 0.1s ease;
}
.btn:hover { background: var(--bg-subtle); border-color: #d4d4d8; }
.btn.primary { background: var(--text); border-color: var(--text); color: #fff; }
.btn.primary:hover { background: #3f3f46; }
.btn.small { padding: 0.32rem 0.6rem; font-size: 0.78rem; }
.btn.icon-only { padding: 0.3rem 0.4rem; }
.btn.danger:hover { color: var(--negative); border-color: var(--negative); }
.btn:disabled { opacity: 0.45; cursor: default; }
.file-label { display: inline-flex; }

label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.78rem; font-weight: 500; color: var(--muted); }
input, select {
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}
input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.toolbar { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.filters { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: end; margin-bottom: 1rem; }
.inline-form { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.inline-form input { max-width: 170px; }

/* ── Tabla ────────────────────────────── */
.table-wrap { overflow-x: auto; }
#tx-table thead th { position: sticky; top: 0; background: var(--bg); z-index: 1; }
#tx-table { scroll-margin-top: 60px; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th, td { padding: 0.55rem 0.6rem; border-bottom: 1px solid var(--border); text-align: left; }
tbody tr:hover { background: var(--bg-subtle); }
th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
td.num { font-variant-numeric: tabular-nums; }
.badge {
  display: inline-block;
  padding: 0.08rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-subtle);
}
.badge.ingreso { color: var(--positive); border-color: rgba(21, 128, 61, 0.3); background: rgba(21, 128, 61, 0.05); }
.badge.gasto { color: var(--negative); border-color: rgba(185, 28, 28, 0.3); background: rgba(185, 28, 28, 0.05); }
.badge.ahorro { color: var(--mauve); border-color: rgba(88, 91, 138, 0.35); background: rgba(88, 91, 138, 0.06); }
.badge.inversion { color: var(--deep-blue); border-color: rgba(46, 74, 115, 0.35); background: rgba(46, 74, 115, 0.06); }
.badge.deuda { color: #b3621e; border-color: rgba(245, 164, 128, 0.5); background: rgba(245, 164, 128, 0.12); }

.row-actions { display: flex; gap: 0.3rem; justify-content: flex-end; }

.pagination { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; justify-content: center; }

/* ── Presupuestos ─────────────────────── */
.budget-list { display: flex; flex-direction: column; gap: 0.65rem; }
.budget-item { display: grid; grid-template-columns: 140px 1fr auto auto; gap: 0.75rem; align-items: center; }
.budget-item strong { font-weight: 500; font-size: 0.85rem; }
.progress { height: 6px; background: #f4f4f5; border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--deep-blue); border-radius: 99px; }
.progress-fill.warn { background: var(--peach); }
.progress-fill.over { background: var(--rose); }

/* ── Mensajes guía ────────────────────── */
.insights { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.insight {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--mauve);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.insight.alerta { border-left-color: var(--coral); }
.insight.aviso { border-left-color: var(--peach); }
.insight.logro { border-left-color: var(--deep-blue); }
.insight.principio { border-left-color: var(--mauve); }
.insight-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mauve);
}
.insight.alerta .insight-tag { color: var(--coral); }
.insight.aviso .insight-tag { color: #d97f4a; }
.insight.logro .insight-tag { color: var(--deep-blue); }
.insight strong { font-size: 0.88rem; letter-spacing: -0.01em; }
.insight p { margin: 0; font-size: 0.82rem; line-height: 1.5; color: var(--text); }
.insight-source { font-size: 0.72rem; color: var(--muted); font-style: italic; }

/* ── Segmentado Por mes / General ─────── */
.segmented {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 2px;
  background: var(--bg-subtle);
}
.seg {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  cursor: pointer;
}
.seg.active { background: var(--deep-blue); color: #fff; }

/* ── Recomendaciones ──────────────────── */
.rec-list { display: flex; flex-direction: column; gap: 1.1rem; }
.rec-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.55rem;
  padding-left: 0.65rem;
  border-left: 3px solid;
}
.rec-group-title.pendiente { color: var(--rose); border-color: var(--rose); }
.rec-group-title.parcial { color: #c07433; border-color: var(--peach); }
.rec-group-title.sugerencia { color: var(--mauve); border-color: var(--mauve); }
.rec-group-title.logrado { color: var(--deep-blue); border-color: var(--deep-blue); }

.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.rec-grid > .rec:only-child { grid-column: 1 / -1; }
@media (max-width: 760px) { .rec-grid { grid-template-columns: 1fr; } }

.rec {
  display: flex;
  gap: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--bg);
}
.rec.logrado { background: var(--bg-subtle); }
.rec.logrado .rec-body strong { color: var(--muted); }
.rec-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.rec-icon svg.icon { width: 17px; height: 17px; }
.rec-icon.pendiente { background: rgba(192, 80, 124, 0.12); color: var(--rose); }
.rec-icon.parcial { background: rgba(245, 164, 128, 0.2); color: #c07433; }
.rec-icon.sugerencia { background: rgba(88, 91, 138, 0.12); color: var(--mauve); }
.rec-icon.logrado { background: rgba(46, 74, 115, 0.1); color: var(--deep-blue); }
.rec-body { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.rec-body strong { font-size: 0.86rem; letter-spacing: -0.01em; line-height: 1.35; }
.rec-body p { margin: 0; font-size: 0.8rem; line-height: 1.5; color: #3f3f46; }
.rec-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.15rem; flex-wrap: wrap; }

/* ── Biblioteca de consejos ───────────── */
dialog.wide { width: min(660px, 94vw); max-height: 85vh; }
.principles-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.principles-head h2 { margin: 0; color: var(--text); text-transform: none; letter-spacing: -0.01em; font-size: 1rem; }
.principles-list { overflow-y: auto; max-height: calc(85vh - 90px); display: flex; flex-direction: column; gap: 0.7rem; padding-right: 0.3rem; }

/* Cabecera de libro: banda con la paleta propia de cada fuente.
   Es un botón: clic para contraer/expandir la sección. */
.book-group { display: flex; flex-direction: column; gap: 0.7rem; }
.book-items { display: flex; flex-direction: column; gap: 0.7rem; }
.book-head {
  border: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.book-head strong { font-size: 0.95rem; letter-spacing: -0.01em; }
.book-head-right { display: inline-flex; align-items: center; gap: 0.5rem; }
.book-head span { font-size: 0.74rem; opacity: 0.85; }
.book-head .book-chevron { transition: transform 0.15s ease; }
.book-head.collapsed .book-chevron { transform: rotate(-90deg); }
.book-head:hover { filter: brightness(1.06); }
.book-head.book-housel { background: linear-gradient(100deg, var(--deep-blue), var(--mauve)); }
.book-head.book-hbr { background: linear-gradient(100deg, var(--rose), var(--coral)); }
.book-head.book-eker { background: linear-gradient(100deg, #c4703f, var(--peach)); }

/* Principio: número grande (anclaje visual), esencia primero, acción al final */
.principle {
  display: flex;
  gap: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
}
.principle-num {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin-top: 1px;
}
.principle.book-housel .principle-num { color: var(--mauve); opacity: 0.55; }
.principle.book-hbr .principle-num { color: var(--coral); opacity: 0.65; }
.principle-content { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.principle-title { font-size: 0.95rem; letter-spacing: -0.015em; line-height: 1.3; }
.principle-message { margin: 0; font-size: 0.84rem; line-height: 1.6; color: #3f3f46; max-width: 52ch; }
.principle-action {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0.55rem 0.75rem;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.principle-action span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.principle.book-housel .principle-action { background: rgba(88, 91, 138, 0.08); }
.principle.book-housel .principle-action span { color: var(--mauve); }
.principle.book-hbr .principle-action { background: rgba(239, 118, 122, 0.1); }
.principle.book-hbr .principle-action span { color: #c4474b; }
.principle.book-eker .principle-num { color: #c4703f; opacity: 0.6; }
.principle.book-eker .principle-action { background: rgba(245, 164, 128, 0.14); }
.principle.book-eker .principle-action span { color: #b3621e; }

/* ── Logros ───────────────────────────── */
.achievement {
  display: flex;
  gap: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
  background: var(--bg);
}
.achievement-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245, 164, 128, 0.25), rgba(192, 80, 124, 0.18));
  color: #b3621e;
}
.achievement-icon svg.icon { width: 17px; height: 17px; }
.achievement-kind {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
}

/* ── Consolidado anual ────────────────── */
table.consolidated { font-size: 0.78rem; }
table.consolidated th, table.consolidated td { padding: 0.45rem 0.5rem; white-space: nowrap; }
table.consolidated tbody th { color: var(--text); font-size: 0.78rem; text-transform: none; letter-spacing: 0; font-weight: 500; text-align: left; }
table.consolidated td.total { font-weight: 600; border-left: 1px solid var(--border); }
table.consolidated tr.row-income th, table.consolidated tr.row-income td { color: var(--deep-blue); font-weight: 600; }
table.consolidated tr.row-expense th, table.consolidated tr.row-expense td { color: var(--rose); font-weight: 600; border-top: 1px solid var(--border); }
table.consolidated tr.row-balance th, table.consolidated tr.row-balance td { font-weight: 700; border-top: 2px solid var(--text); border-bottom: none; }

/* ── Diálogos ─────────────────────────── */
dialog {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
  width: min(420px, 92vw);
  color: var(--text);
}
dialog::backdrop { background: rgba(24, 24, 27, 0.4); }
dialog form { display: flex; flex-direction: column; gap: 0.8rem; }
dialog h2 { color: var(--text); text-transform: none; letter-spacing: -0.01em; font-size: 0.95rem; margin-bottom: 0.25rem; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 0.5rem; }

/* ── Login ────────────────────────────── */
.auth-body { display: grid; place-items: center; min-height: 100vh; background: var(--bg-subtle); }
.auth-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: min(380px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--peach) 0 20%, var(--coral) 20% 40%, var(--rose) 40% 60%,
    var(--mauve) 60% 80%, var(--deep-blue) 80% 100%
  );
}
.auth-card .brand { justify-content: center; }
.auth-card .muted { text-align: center; margin: 0; }
.auth-card form { display: flex; flex-direction: column; gap: 0.8rem; }
.tabs { display: flex; gap: 0.4rem; border: 1px solid var(--border); border-radius: 6px; padding: 3px; }
.tab {
  flex: 1;
  padding: 0.4rem;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--muted);
}
.tab.active { background: var(--text); color: #fff; }

/* ── Toast ────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  z-index: 100;
  max-width: 90vw;
}
.toast.error { background: var(--negative); }

/* ── Responsive ───────────────────────── */
/* Tablet y abajo */
@media (max-width: 900px) {
  .container { margin: 1rem auto; gap: 0.85rem; }
  .panel { padding: 1rem; }
  .budget-item { grid-template-columns: 110px 1fr auto auto; gap: 0.5rem; }
}

/* Móvil */
@media (max-width: 640px) {
  body { font-size: 13px; }
  .topbar { padding: 0.6rem 0.75rem; gap: 0.4rem; }
  .topbar-right { gap: 0.35rem; }
  /* Botones de la barra a solo icono (title conserva el nombre) */
  .btn-label, .hide-mobile { display: none; }
  .palette-stripe { top: 49px; }

  .container { padding: 0 0.6rem; }
  .cards { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .card { padding: 0.7rem 0.8rem; }
  .card-value { font-size: 1.15rem; }

  .charts { grid-template-columns: 1fr; }
  .chart-box { height: 220px; }

  .insights { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }

  .panel-header { flex-direction: column; align-items: stretch; }
  .inline-form { width: 100%; }
  .inline-form input { max-width: none; flex: 1; }
  .filters { gap: 0.5rem; }
  .filters label { flex: 1 1 45%; }

  th, td { padding: 0.45rem 0.4rem; font-size: 0.78rem; }
  .row-actions { flex-direction: column; }

  .budget-item { grid-template-columns: 1fr auto; }
  .budget-item .progress { grid-column: 1 / -1; order: 3; }

  dialog { padding: 1.1rem; }
  dialog.wide { width: 96vw; }
  .principle, .achievement, .rec { padding: 0.75rem 0.8rem; gap: 0.6rem; }
  .principle-num { font-size: 1.15rem; }
}

/* Pantallas muy angostas */
@media (max-width: 400px) {
  .cards { grid-template-columns: 1fr; }
  .topbar-right input[type="month"] { width: 130px; }
}
