/* ============================================================================
   Shaka Control Centre — dashboard preview
   Design tokens follow the ShakaTech brand (dark navy + cyan, Orbitron display)
   established in ../../ShakaTech/styles.css, with a dedicated status palette for
   the seven tenant lifecycle states (never color-alone — every status pairs a
   color with a text label, per docs/THREAT_MODEL.md's operational-clarity goal).
   ============================================================================ */

:root {
  color-scheme: dark;

  /* Brand chrome (ShakaTech identity) */
  --bg: #0b1220;
  --surface: #0f1826;
  --surface-2: #141f30;
  --surface-3: #1b2740;
  --border: rgba(0, 230, 255, 0.14);
  --border-strong: rgba(0, 230, 255, 0.32);
  --text: #e7ecf3;
  --text-secondary: #a9b4c4;
  --text-muted: #6b7686;
  --brand-cyan: #00e6ff;
  --brand-blue: #007bff;

  /* Status palette — fixed, never themed. Mapped from the dataviz skill's
     validated status roles (good/warning/serious/critical) plus two neutral
     tones for the non-severity lifecycle states (draft, cancelled) and one
     informational blue borrowed from the categorical set (trialing). */
  --status-draft: #898781;
  --status-trialing: #3987e5;
  --status-active: #0ca30c;
  --status-past_due: #fab219;
  --status-suspended: #ec835a;
  --status-cancelled: #5b6472;
  --status-provisioning_failed: #d03b3b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --sidebar-w: 248px;

  --font-display: "Orbitron", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(0, 230, 255, 0.25);
}

:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 2px;
}

/* ---------- shell layout ---------- */

.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, #0c1424, #0a0f1c);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 22px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 8px 22px;
}

.wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--brand-cyan);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  width: 100%;
  text-align: left;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-link.is-active {
  background: rgba(0, 230, 255, 0.08);
  border-color: var(--border-strong);
  color: var(--brand-cyan);
}

.nav-link .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}

.sidebar-spacer {
  flex: 1;
}

.add-customer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: var(--brand-cyan);
  color: #04121a;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.add-customer-cta:hover {
  filter: brightness(1.08);
}

/* ---------- sidebar connections ---------- */

.sidebar-section {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.sidebar-eyebrow {
  padding: 0 8px;
  margin-bottom: 8px;
}

.conn-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.conn-row:hover {
  background: var(--surface-2);
  color: var(--text);
}

.conn-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--dot-color, var(--text-muted));
  flex-shrink: 0;
}

.conn-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conn-status {
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

.preview-tag {
  margin-top: 14px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(251, 178, 25, 0.45);
  background: rgba(251, 178, 25, 0.08);
  color: #fab219;
  font-size: 11px;
  line-height: 1.4;
}

/* ---------- main / topbar ---------- */

.main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.topbar h1 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  width: 240px;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--brand-cyan);
}

.content {
  padding: 24px 28px 48px;
  overflow-x: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}

/* ---------- fleet strip (signature element) ---------- */

.fleet-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.fleet-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px 7px 9px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
}

.fleet-chip:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dot-color, var(--text-muted));
  flex-shrink: 0;
}

.fleet-dot.is-live {
  box-shadow: 0 0 0 0 var(--dot-color, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fleet-dot.is-live {
    animation: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--dot-color) 55%, transparent);
  }
  70% {
    box-shadow: 0 0 0 6px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

/* ---------- stat cards ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
}

.stat-card .label {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-card .value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.stat-card .sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-card.warn .value {
  color: var(--status-past_due);
}

/* ---------- panels / sections ---------- */

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

/* A <summary> used as a panel-header: collapsible panel toggle. */
summary.panel-header {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

summary.panel-header::-webkit-details-marker,
summary.panel-header::marker {
  display: none;
  content: "";
}

summary.panel-header:hover {
  background: var(--surface-2);
}

details.panel:not([open]) > summary.panel-header {
  border-bottom: none;
}

.panel-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.panel-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- drag-to-reorder (Settings panels) ---------- */

.drag-handle {
  display: inline-block;
  width: 14px;
  height: 18px;
  flex-shrink: 0;
  cursor: grab;
  background-image: radial-gradient(circle, var(--text-muted) 1.3px, transparent 1.3px);
  background-size: 6px 6px;
  opacity: 0.55;
}

.drag-handle:hover {
  opacity: 0.9;
}

.drag-handle:active {
  cursor: grabbing;
}

details.panel.is-dragging {
  opacity: 0.45;
}

details.panel.drag-over {
  outline: 2px dashed var(--brand-cyan);
  outline-offset: -2px;
}

.chevron {
  display: inline-block;
  color: var(--text-muted);
  font-size: 11px;
  transition: transform 0.15s ease;
}

details.panel[open] > summary.panel-header .chevron {
  transform: rotate(90deg);
}

.panel-header h2 {
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.panel-body {
  padding: 16px 18px;
}

/* ---------- alerts list ---------- */

.alert-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.alert-row:last-child {
  border-bottom: none;
}

.alert-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-icon.critical {
  background: color-mix(in srgb, var(--status-provisioning_failed) 22%, transparent);
  color: var(--status-provisioning_failed);
}

.alert-icon.warning {
  background: color-mix(in srgb, var(--status-past_due) 20%, transparent);
  color: var(--status-past_due);
}

.alert-time {
  color: var(--text-muted);
  font-size: 11.5px;
  white-space: nowrap;
  margin-left: auto;
  font-family: var(--font-mono);
}

/* ---------- table ---------- */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr.is-clickable {
  cursor: pointer;
}

tbody tr.is-clickable:hover {
  background: var(--surface-2);
}

tbody tr.is-archived {
  opacity: 0.55;
}

tbody tr.is-archived:hover {
  opacity: 0.85;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.cell-name {
  font-weight: 600;
  color: var(--text);
}

.cell-sub {
  color: var(--text-muted);
  font-size: 11.5px;
  margin-top: 2px;
}

/* ---------- status badge ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px 4px 7px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--badge-color) 45%, transparent);
  background: color-mix(in srgb, var(--badge-color) 14%, transparent);
  color: color-mix(in srgb, var(--badge-color) 78%, white);
  white-space: nowrap;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--badge-color);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
}

.btn:hover {
  border-color: var(--border-strong);
}

.btn-primary {
  background: var(--brand-cyan);
  color: #04121a;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-danger {
  background: color-mix(in srgb, var(--status-suspended) 16%, var(--surface));
  border-color: color-mix(in srgb, var(--status-suspended) 45%, transparent);
  color: color-mix(in srgb, var(--status-suspended) 85%, white);
}

.btn-danger:hover {
  background: color-mix(in srgb, var(--status-suspended) 26%, var(--surface));
}

.btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ---------- detail header ---------- */

.detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-header h1 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 6px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12.5px;
}

/* ---------- timeline ---------- */

.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 16px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 3px var(--surface);
}

.timeline-detail {
  font-size: 13px;
  color: var(--text);
}

.timeline-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: var(--font-mono);
}

/* ---------- chart (single-series cost bars) ---------- */

.chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 90px;
  padding-top: 8px;
}

.chart-bar {
  flex: 1;
  background: #3987e5;
  border-radius: 3px 3px 1px 1px;
  min-height: 2px;
  position: relative;
  cursor: default;
}

.chart-bar:hover {
  background: #5598e7;
}

.chart-bar:hover .chart-tooltip {
  display: block;
}

.chart-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 5px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
  z-index: 5;
  color: var(--text);
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: var(--font-mono);
}

/* ---------- key/value grid ---------- */

.kv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px 20px;
}

/* Grid items default to min-width: auto, so an unbreakable long string (an
   email address, a phone number in a mono font) forces its track wider than
   its minmax() cap, overlapping the next column instead of wrapping. min-width:
   0 lets the track actually respect its allotted fraction; overflow-wrap on the
   value is the fallback for anything still too long for that width. */
.kv-item {
  min-width: 0;
}

.kv-item .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.kv-item .value {
  font-size: 13.5px;
  overflow-wrap: break-word;
}

.kv-item .value.mono {
  font-size: 13px;
}

.tag-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

/* ---------- forms / wizard ---------- */

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.field .hint {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 5px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  font-size: 13px;
  font-family: var(--font-body);
}

.field textarea {
  resize: vertical;
  min-height: 72px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-cyan);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.plan-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
}

.plan-card:hover {
  border-color: var(--border-strong);
}

.plan-card:has(input:checked) {
  border-color: var(--brand-cyan);
  background: rgba(0, 230, 255, 0.06);
}

.plan-card input[type="radio"] {
  display: none;
}

.plan-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.plan-card-head strong {
  font-size: 14px;
}

.plan-card .hint {
  margin: 0 0 4px;
}

.plan-card .hint:last-child {
  margin-bottom: 0;
}

.wizard-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.wizard-step .num {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--font-mono);
}

.wizard-step.is-active {
  border-color: var(--border-strong);
  color: var(--brand-cyan);
}

.wizard-step.is-active .num {
  background: var(--brand-cyan);
  color: #04121a;
}

.wizard-step.is-done {
  color: var(--status-active);
}

.wizard-step.is-done .num {
  background: var(--status-active);
  color: #04121a;
}

/* ---------- empty state ---------- */

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 26px;
  margin-bottom: 10px;
  opacity: 0.6;
}

/* ---------- integration cards (Settings > Connections) ---------- */

.integration-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 12px;
}

.integration-card:last-child {
  margin-bottom: 0;
}

.integration-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.integration-head h3 {
  margin: 0;
  font-size: 14px;
}

.integration-detail {
  color: var(--text-secondary);
  font-size: 12.5px;
  margin: 0 0 12px;
}

.code-block {
  background: #060a12;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  overflow-x: auto;
}

.code-block .comment {
  color: var(--text-muted);
}

.code-block-group {
  margin-bottom: 10px;
}

.code-block-group:last-child {
  margin-bottom: 0;
}

.code-block-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.copy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  padding: 2px 8px;
  cursor: pointer;
}

.copy-btn:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

/* ---------- confirm dialog ---------- */

.dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.dialog {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 22px;
  width: 380px;
  max-width: calc(100vw - 32px);
}

.dialog h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.dialog p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.dialog .btn-row {
  justify-content: flex-end;
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 12px 16px;
  }

  .sidebar .nav {
    flex-direction: row;
  }

  .sidebar-spacer {
    display: none;
  }

  .preview-tag {
    display: none;
  }

  .search-input {
    width: 140px;
  }
}
