/* ==========================================================================
   IRON ROUTE — LAS CUATRO PANTALLAS QUE SE PINTABAN SIN UNA SOLA REGLA

   EL HALLAZGO, CONTADO. Se sacaron todas las clases que emiten `ifta.js`,
   `fuel.js`, `tracking.js` y `hos.js` y se buscaron una por una en las 35
   hojas del proyecto:

       js/ifta.js       42 clases  →  29 SIN NINGUNA REGLA
       js/fuel.js       56 clases  →  39 SIN NINGUNA REGLA
       js/tracking.js   44 clases  →  32 SIN NINGUNA REGLA
       js/hos.js        31 clases  →  30 SIN NINGUNA REGLA

   **130 clases sin estilo.** No son cuatro detalles: son las cuatro
   pantallas del dinero y del cumplimiento —IFTA, combustible, rastreo y
   horas de servicio— pintándose como texto corrido. Medido en el informe
   IFTA, la tabla salía así:

       EstadoMillasGalonesTasaImpuesto
       NJ12.0100.0$0.424—

   Cinco columnas pegadas sin un espacio. Eso no se lee: se adivina.

   POR QUÉ NADIE LO VIO. Los cuatro módulos construyen su pantalla con
   `innerHTML` y cadenas. Un `class="ifta-tbl-head"` que no existe en ninguna
   hoja **no falla**: el navegador aplica los estilos por defecto de un `div`
   y sigue. No hay error de consola, no hay excepción, no hay nada que
   buscar. Es el mismo patrón que las `var()` sin definir y que los modales
   del dinero: sale mal y calla.

   Y por qué importa más de lo que parece: son las pantallas que producen el
   informe trimestral que se presenta a la jurisdicción base, el registro de
   combustible que lo alimenta, y el reloj de horas cuya infracción es una
   multa federal. Una pantalla ilegible en el sitio donde se comprueba un
   número es una pantalla que no se comprueba.

   `tests/pantallas-con-estilo.mjs` cuenta las clases contra las hojas en
   cada ejecución, para que esto no pueda volver en silencio.

   La retícula: 12/16/20 px de hueco, 48 px de suelo de toque, 12 px de suelo
   tipográfico, números en `tabular-nums` para que las columnas cuadren.
   ========================================================================== */

/* ══════════════════════════════════════════════════════════════════════════
   VOCABULARIO COMPARTIDO — las cuatro pantallas son la misma familia
   ══════════════════════════════════════════════════════════════════════════ */
.ifta-tbl, .ifta-totals, .fuel-stats, .hos-gauges,
.trk-status-grid, .fuel-stations-section, .trk-fleet-section {
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════════════════════════════════
   1 · IFTA
   ══════════════════════════════════════════════════════════════════════════ */
.ifta-quarter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ifta-q-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2, #10294A);
  border: 1px solid var(--line, #1E3A5F);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}
.ifta-mpg { font-size: 13px; font-weight: 600; color: var(--text-muted, #9FB0C3); }

.ifta-map-wrap {
  margin: 4px 0 16px;
  padding: 8px;
  border-radius: 12px;
  background: var(--ink, #030D1C);
  border: 1px solid var(--line, #1E3A5F);
}
.ifta-map-wrap canvas { display: block; width: 100%; height: auto; }

/* La tabla: rejilla de cinco columnas, no cinco `<span>` pegados. El estado
   a la izquierda y los cuatro números alineados a la derecha, que es como se
   compara una columna de dinero. */
.ifta-tbl {
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 12px;
  overflow: hidden;
}
/* Medido a 360 px: con 8 px de hueco y 12 px de letra, «IMPUESTO» se salía
   por la derecha. Cinco columnas de dinero en un teléfono estrecho no caben
   con la palabra entera, así que el encabezado baja a 11 px sin `letter-
   spacing` —lo que se lee de un encabezado es su sitio, no su tamaño— y el
   hueco a 6. Las cifras se quedan en 13, que es lo que se lee. */
.ifta-tbl-head, .ifta-tbl-row {
  display: grid;
  grid-template-columns: 2.6rem 1fr 1fr 3.2rem 1fr;
  gap: 6px;
  align-items: center;
  padding: 10px;
  font-size: 13px;
}
.ifta-tbl-head {
  background: var(--surface-2, #10294A);
  color: var(--text-muted, #9FB0C3);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.ifta-tbl-row { border-top: 1px solid var(--line, #1E3A5F); }
.ifta-tbl-head > *:not(:first-child),
.ifta-tbl-row > *:not(:first-child) { text-align: right; }
.ifta-st-name { font-weight: 700; }

.ifta-owe    { color: var(--warning, #F5A623); font-weight: 700; }
.ifta-credit { color: var(--success, #10B981); font-weight: 700; }

.ifta-totals {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-2, #10294A);
  border: 1px solid var(--line, #1E3A5F);
}
.ifta-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  font-size: 14px;
}
.ifta-total-row.ifta-net {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line, #1E3A5F);
  font-size: 16px;
  font-weight: 800;
}

.ifta-actions, .fuel-actions, .hos-actions, .trk-share-actions, .trk-driver-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ifta-btn-fuel, .ifta-btn-export, .ifta-btn-print, .ifta-btn-reset {
  flex: 1 1 45%;
}
.ifta-btn-reset { color: var(--error, #EF4444); border-color: var(--error, #EF4444); }

.ifta-empty, .fuel-vacio, .trk-vacio {
  padding: 20px 16px;
  text-align: center;
  color: var(--text-muted, #9FB0C3);
  font-size: 14px;
  line-height: 1.5;
}

.ifta-fuel-section, .fuel-log-section, .trk-geofence-section,
.trk-status-section, .trk-fleet-section, .trk-my-status,
.fuel-stations-section, .hos-log-section {
  margin-top: 20px;
}
.ifta-fuel-section h4, .fuel-log-section h4, .trk-geofence-section h4,
.trk-status-section h4, .trk-fleet-section h4, .trk-my-status h4,
.fuel-stations-section h4, .hos-log-section h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted, #9FB0C3);
}

.ifta-fuel-list, .fuel-log-list, .hos-log-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ifta-fuel-item, .fuel-log-item, .trk-geofence-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto 48px;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 10px;
  font-size: 13px;
}
.ifl-date, .fli-date { color: var(--text-muted, #9FB0C3); }
.ifl-state { font-weight: 800; }
.ifl-gal, .fli-gal, .fli-price { color: var(--text-muted, #9FB0C3); }
.ifl-cost, .fli-cost { font-weight: 700; text-align: right; }
.fli-station { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ifl-del, .fli-del, .trk-gf-del {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 10px;
  background: transparent;
  color: var(--text-muted, #9FB0C3);
  cursor: pointer;
}
.ifl-del:hover, .fli-del:hover, .trk-gf-del:hover {
  background: var(--surface-2, #10294A);
  color: var(--error, #EF4444);
}

/* ══════════════════════════════════════════════════════════════════════════
   2 · COMBUSTIBLE
   ══════════════════════════════════════════════════════════════════════════ */
.fuel-gauge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 12px;
  width: 200px;
  max-width: 100%;
}
.fuel-gauge-wrap canvas { display: block; max-width: 100%; height: auto; }
.fuel-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
  text-align: center;
}
.fg-pct   { font-size: 30px; font-weight: 800; line-height: 1; }
.fg-range { font-size: 16px; font-weight: 700; }
.fg-label { font-size: 12px; color: var(--text-muted, #9FB0C3); }
/* Cuando el alcance sale de un supuesto y no de una medida, se pinta en
   apagado y con el mismo peso que el rótulo: un número grande y brillante se
   lee como medido. */
.fg-range.fg-supuesto { color: var(--text-muted, #9FB0C3); font-weight: 600; font-size: 14px; }

.fuel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.fuel-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 12px;
}
.fs-val   { font-size: 18px; font-weight: 800; }
.fs-label { font-size: 12px; color: var(--text-muted, #9FB0C3); }

.fuel-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted, #9FB0C3);
}
.fuel-slider {
  width: 100%;
  height: 32px;          /* el carril es fino; el ÁREA de toque no */
  accent-color: var(--accent, #F58220);
}

.fuel-type-filters, .trk-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.fuel-filter-btn, .trk-status-btn {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 12px;
  background: transparent;
  color: var(--text, #F5F7FA);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.fuel-filter-btn.fuel-filter-active {
  border-color: var(--accent, #F58220);
  background: color-mix(in srgb, var(--accent, #F58220) 16%, transparent);
}
.trk-status-btn.trk-status-active {
  border-color: var(--status-color, var(--accent, #F58220));
  background: color-mix(in srgb, var(--status-color, #F58220) 18%, transparent);
}

.fuel-station-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 12px;
  margin-bottom: 8px;
}
.fsc-left  { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fsc-right { text-align: right; flex: 0 0 auto; }
.fsc-name  { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fsc-addr  { font-size: 12px; color: var(--text-muted, #9FB0C3);
             overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fsc-dist  { font-size: 13px; color: var(--text-muted, #9FB0C3); }
.fsc-price { font-size: 17px; font-weight: 800; }
/* «Sin precio» no es un precio de cero: se dice con palabras. */
.fsc-sin-precio { font-size: 12px; font-weight: 600; color: var(--text-muted, #9FB0C3); }
.fsc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.fsc-tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2, #10294A);
  font-size: 12px;
  color: var(--text-muted, #9FB0C3);
}
.fuel-optimal, .fuel-optimal-base {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--success, #10B981);
  background: color-mix(in srgb, var(--success, #10B981) 12%, transparent);
  font-size: 14px;
  line-height: 1.45;
}
.fuel-urgent {
  border-color: var(--error, #EF4444);
  background: color-mix(in srgb, var(--error, #EF4444) 14%, transparent);
}

/* 45 % y no 30 %: con 30 caben tres por fila y el cuarto se queda solo,
   descolgado y del ancho de la pantalla. Con 45 son dos y dos. */
.fuel-btn, .trk-btn { flex: 1 1 30%; }
.hos-btn { flex: 1 1 44%; }
.fuel-btn, .trk-btn, .hos-btn {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 12px;
  background: var(--surface-2, #10294A);
  color: var(--text, #F5F7FA);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.fuel-btn:hover, .trk-btn:hover, .hos-btn:hover { filter: brightness(1.12); }
.fuel-btn:focus-visible, .trk-btn:focus-visible, .hos-btn:focus-visible,
.fuel-filter-btn:focus-visible, .trk-status-btn:focus-visible {
  outline: 2px solid var(--accent, #F58220);
  outline-offset: 2px;
}
.fuel-btn-log { background: var(--accent, #F58220); border-color: var(--accent, #F58220); color: #0A1B33; }

/* ══════════════════════════════════════════════════════════════════════════
   3 · RASTREO
   ══════════════════════════════════════════════════════════════════════════ */
.trk-btn-start { background: var(--accent, #F58220); border-color: var(--accent, #F58220); color: #0A1B33; }
.trk-btn-stop  { background: transparent; color: var(--error, #EF4444); border-color: var(--error, #EF4444); }
.trk-btn-sm    { flex: 0 0 auto; min-height: 48px; font-size: 13px; }
.trk-my-status .trk-btn, .trk-fleet-section .trk-btn { width: 100%; }

.trk-sharing-active {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--success, #10B981);
  background: color-mix(in srgb, var(--success, #10B981) 12%, transparent);
}
.trk-share-link {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--ink, #030D1C);
  border: 1px solid var(--line, #1E3A5F);
  font-size: 13px;
  word-break: break-all;
}
.trk-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--success, #10B981);
  animation: trk-latido 1.6s ease-in-out infinite;
}
@keyframes trk-latido { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .trk-pulse { animation: none; } }

.trk-driver-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line, #1E3A5F);
  border-radius: 12px;
  margin-bottom: 8px;
}
.trk-driver-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2, #10294A);
  font-size: 18px;
}
.trk-driver-info { min-width: 0; flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; }
.trk-driver-name { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trk-driver-meta, .trk-driver-updated, .trk-driver-detail {
  font-size: 12px; color: var(--text-muted, #9FB0C3);
}
.trk-driver-status {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--status-color, #9FB0C3) 20%, transparent);
  font-size: 12px;
  font-weight: 700;
}

.trk-geofence-item { grid-template-columns: auto 1fr auto 48px; }
.trk-gf-icon   { font-size: 18px; }
.trk-gf-name   { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trk-gf-radius { font-size: 12px; color: var(--text-muted, #9FB0C3); }
.trk-gf-badge  {
  padding: 2px 8px; border-radius: 999px;
  background: var(--surface-2, #10294A);
  font-size: 12px;
}
.trk-breadcrumb-info { font-size: 13px; color: var(--text-muted, #9FB0C3); margin-top: 8px; }
.trk-cerrada-p { font-size: 13px; line-height: 1.5; color: var(--text-muted, #9FB0C3); margin: 0 0 10px; }
.trk-btn-icon { flex: 0 0 auto; width: 48px; min-height: 48px; padding: 0; }
.trk-btn-copy { flex: 0 0 auto; }

/* ══════════════════════════════════════════════════════════════════════════
   4 · HORAS DE SERVICIO
   ══════════════════════════════════════════════════════════════════════════ */
.hos-current-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid var(--hos-color, var(--line, #1E3A5F));
  background: color-mix(in srgb, var(--hos-color, #666) 16%, transparent);
}
.hos-status-icon  { font-size: 20px; }
.hos-status-label { font-weight: 700; }

.hos-gauges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hos-gauge-wrap {
  position: relative;
  width: 140px;
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hos-gauge-sm { width: 100px; }
.hos-gauge-wrap canvas { display: block; max-width: 100%; height: auto; }
.hos-gauge-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
  pointer-events: none;
}
.hos-gauge-val    { font-size: 17px; font-weight: 800; line-height: 1.1; }
.hos-gauge-val-sm { font-size: 14px; }
.hos-gauge-sub    { font-size: 12px; color: var(--text-muted, #9FB0C3); }
.hos-gauge-max    { font-size: 12px; color: var(--text-muted, #9FB0C3); opacity: .8; }

.hos-btn-drive   { background: var(--accent, #F58220); border-color: var(--accent, #F58220); color: #0A1B33; }
.hos-btn-break   { background: var(--surface-2, #10294A); }
.hos-btn-stop    { color: var(--error, #EF4444); border-color: var(--error, #EF4444); background: transparent; }
.hos-btn-reset   { color: var(--error, #EF4444); border-color: var(--error, #EF4444); background: transparent; }
.hos-btn-endbreak, .hos-btn-sleeper, .hos-btn-offduty { background: var(--surface-2, #10294A); }
.hos-reset-wrap { display: flex; margin-top: 12px; }

/* El descargo NO se esconde en gris pequeño: esta herramienta no sustituye a
   un ELD certificado, y quien lo confunda se lleva una multa federal. */
.hos-disclaimer {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--warning, #F5A623);
  background: color-mix(in srgb, var(--warning, #F5A623) 12%, transparent);
  font-size: 13px;
  line-height: 1.5;
}

.hos-log-entry {
  display: grid;
  grid-template-columns: 12px auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}
.hos-log-active { background: var(--surface-2, #10294A); font-weight: 700; }
.hos-log-dot    { width: 10px; height: 10px; border-radius: 50%; background: var(--text-muted, #9FB0C3); }
.hos-log-active .hos-log-dot { background: var(--accent, #F58220); }
.hos-log-time   { color: var(--text-muted, #9FB0C3); font-variant-numeric: tabular-nums; }
.hos-log-status { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hos-log-dur    { text-align: right; font-variant-numeric: tabular-nums; }

/* ══════════════════════════════════════════════════════════════════════════
   EL INFORME IMPRESO — `exportHTML()` escribe su propia hoja, pero estas dos
   clases se le escaparon.
   ══════════════════════════════════════════════════════════════════════════ */
.totals { border-radius: 8px; }
.totals > div { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; }
.totals .net { font-weight: 800; border-top: 1px solid rgba(255, 255, 255, .25); margin-top: 6px; padding-top: 8px; }
.company { font-weight: 700; }
.footer  { margin-top: 24px; font-size: 12px; opacity: .7; }

/* ══════════════════════════════════════════════════════════════════════════
   TEMA CLARO
   ══════════════════════════════════════════════════════════════════════════ */
html[data-theme="light"] .ifta-q-badge,
html[data-theme="light"] .ifta-tbl-head,
html[data-theme="light"] .ifta-totals,
html[data-theme="light"] .fuel-btn,
html[data-theme="light"] .trk-btn,
html[data-theme="light"] .hos-btn,
html[data-theme="light"] .fsc-tag,
html[data-theme="light"] .trk-gf-badge,
html[data-theme="light"] .trk-driver-avatar,
html[data-theme="light"] .hos-log-active {
  background: #EEF3F9;
  color: #0A1B33;
  border-color: #D8E0EA;
}
html[data-theme="light"] .ifta-tbl,
html[data-theme="light"] .ifta-tbl-row,
html[data-theme="light"] .fuel-stat,
html[data-theme="light"] .fuel-station-card,
html[data-theme="light"] .trk-driver-card,
html[data-theme="light"] .ifta-fuel-item,
html[data-theme="light"] .fuel-log-item,
html[data-theme="light"] .trk-geofence-item,
html[data-theme="light"] .fuel-filter-btn,
html[data-theme="light"] .trk-status-btn { border-color: #D8E0EA; color: #0A1B33; }
html[data-theme="light"] .ifta-mpg,
html[data-theme="light"] .fs-label,
html[data-theme="light"] .fg-label,
html[data-theme="light"] .fsc-addr,
html[data-theme="light"] .fsc-dist,
html[data-theme="light"] .hos-gauge-sub,
html[data-theme="light"] .hos-gauge-max,
html[data-theme="light"] .trk-driver-meta,
html[data-theme="light"] .ifta-empty,
html[data-theme="light"] .fuel-vacio { color: #5B6B7F; }
html[data-theme="light"] .trk-share-link { background: #F7F9FC; border-color: #D8E0EA; }
html[data-theme="light"] .fuel-btn-log,
html[data-theme="light"] .trk-btn-start,
html[data-theme="light"] .hos-btn-drive {
  background: var(--accent, #F58220);
  border-color: var(--accent, #F58220);
  color: #0A1B33;
}

/* Los tres que faltaban al contarlos la primera vez. `cng` es la clase de
   estado del filtro de gas natural comprimido; los otros dos, los botones
   secundarios de la fila de acciones. */
.fuel-btn-find, .fuel-btn-settings { background: var(--surface-2, #10294A); }
.fuel-filter-btn.cng { border-color: #3B7DD8; }
html[data-theme="light"] .fuel-btn-find,
html[data-theme="light"] .fuel-btn-settings { background: #EEF3F9; }

/* La frase que dice de dónde sale el alcance cuando no está medido. Va justo
   debajo del aforo, con el mismo ancho, para que se lea como parte del
   número y no como una nota al pie que nadie mira. */
.fuel-supuesto-nota {
  margin: -4px 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line, #1E3A5F);
  background: var(--surface-2, #10294A);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted, #9FB0C3);
}
html[data-theme="light"] .fuel-supuesto-nota { background: #EEF3F9; border-color: #D8E0EA; color: #5B6B7F; }
