/* ===================================================================
   Trimmed copy of the main app's app/static/css/style.css, kept in the
   same "safety card pictogram" look (navy + white + dashed evacuation
   line) but with every editing-only section removed: no forms, no
   dialogs, no bulk-actions/export dropdowns, no CSV import badges.
   This site is view-only, generated by scripts/export_static.py.
   =================================================================== */
:root {
  --navy: #1b2a4a;
  --navy-soft: #5b6b87;
  --silver: #eceef3;
  --panel: #ffffff;
  --line: #e5e8ee;
  --line-strong: #c7cede;
  --wash: #ccd6e7;
  --gold: #b7791f;
  --go: #1b7a3d;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(27, 42, 74, 0.07);
  --shadow: 0 1px 3px rgba(27, 42, 74, 0.1), 0 1px 2px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 6px 16px rgba(27, 42, 74, 0.14);
  --shadow-lg: 0 12px 32px rgba(27, 42, 74, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  color: var(--navy);
  background: var(--silver);
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem 0.95rem;
  margin-bottom: 0.5rem;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--panel);
  border-bottom: 2px dashed rgba(27, 42, 74, 0.2);
  z-index: -1;
}

.brand {
  min-width: 0;
}

header h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  margin: 0.1rem 0 0 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-soft);
}

header h1 a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: -0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.brand-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

header nav {
  display: flex;
  gap: 0.75rem;
  margin-right: -0.9rem;
}

header nav a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}

header h1 a:hover,
header nav a:hover {
  background: var(--wash);
  color: var(--navy);
}

header a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
}

h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.meta-info {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy-soft);
  margin-bottom: 1rem;
}

button, .button {
  display: inline-block;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--panel);
  font: inherit;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

button:hover, .button:hover {
  background: #101c33;
  box-shadow: var(--shadow);
}

.button-outline {
  background: var(--panel);
  color: var(--navy);
  border-color: var(--line-strong);
}

.button-outline:hover {
  background: var(--wash);
  border-color: var(--navy-soft);
}

/* ---- filter bar ---- */
.filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.85rem;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.filter-bar label {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy-soft);
}

.filter-bar select {
  display: block;
  width: auto;
  min-width: 8rem;
  font: inherit;
  color: var(--navy);
  padding: 0.5rem 0.65rem;
  margin-top: 0.3rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.filter-bar select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.18);
}

.clear-filters-link {
  align-self: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-soft);
  text-decoration: underline;
  padding-bottom: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* .clear-filters-link is a <button> (JS-driven, no href to navigate to),
   so button:hover's own background/box-shadow rule (same specificity tier
   as a single-class selector, and it wins the element-vs-nothing
   tie-break) would otherwise paint this like a solid button on hover -
   dark text on a dark fill. Reset both explicitly to keep it a plain
   underlined link at every state. */
.clear-filters-link:hover {
  color: var(--navy);
  background: none;
  box-shadow: none;
}

/* ---- list table ---- */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--panel);
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--panel);
}

th, td {
  text-align: left;
  padding: 0.6rem 0.7rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--line);
}

.cell-units {
  text-align: center;
}

thead th {
  background: var(--navy);
  color: var(--panel);
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

@media (min-width: 701px) {
  .table-scroll:not(.view-cards) tbody tr:hover {
    background: rgba(27, 42, 74, 0.06);
  }
}

.sort-link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

/* same button:hover specificity tie-break as .clear-filters-link above -
   reset explicitly rather than let the dark solid-button fill show up
   behind these header labels on hover. */
.sort-link:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
  background: none;
  box-shadow: none;
}

.sort-arrow {
  font-size: 0.7em;
}

.col-photo, .col-actions {
  width: 2.5rem;
}

.col-airline {
  width: 9.5rem;
}

.col-manufacturer {
  width: 6.75rem;
}

.col-family {
  width: 4.5rem;
}

.col-model {
  width: 6.5rem;
}

.col-units {
  width: 4.5rem;
}

.col-tradeable {
  width: 3rem;
}

.col-part-number {
  width: 15rem;
}

.truncate {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.truncate::-webkit-scrollbar {
  display: none;
}

.title-tradeable {
  display: none;
}

.actions-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.actions a.icon-link {
  color: var(--navy-soft);
}

.icon-link:hover {
  background: var(--wash);
  color: var(--navy);
}

.list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* segmented Rows/Cards switch */
.view-switch {
  position: relative;
  display: inline-flex;
  width: 220px;
  margin-left: auto;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.view-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.view-switch[data-active="cards"] .view-switch-thumb {
  transform: translateX(100%);
}

.view-switch .view-toggle {
  position: relative;
  z-index: 1;
  flex: 1;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0.4rem 0;
  font: inherit;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s ease;
}

.view-switch .view-toggle.active {
  color: var(--panel);
}

/* ---- photo hover preview (list + gallery share this) ---- */
.thumb-hover {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  color: var(--navy-soft);
  text-decoration: none;
  cursor: pointer;
}

.image-tile .thumb-hover {
  display: block;
}

.thumb-hover.thumb-empty {
  opacity: 0.55;
}

.thumb-preview {
  display: none;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 0.5rem;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-lg);
}

.thumb-overlay {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--panel);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 999;
}

@media (hover: hover) and (pointer: fine) {
  .thumb-hover:hover .thumb-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 9999px rgba(27, 42, 74, 0.75), 0 8px 32px rgba(0, 0, 0, 0.5);
  }
}

/* ---- per-card photo gallery (card.html) ---- */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.image-tile {
  position: relative;
  width: 160px;
  flex-shrink: 0;
  text-align: center;
}

.gallery-thumb {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  display: block;
  cursor: pointer;
}

.cover-star {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  color: var(--gold);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.15rem;
  box-shadow: var(--shadow-sm);
}

/* ---- card detail page ---- */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.detail-field {
  min-width: 0;
}

.detail-field.span-2 {
  grid-column: 1 / -1;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-soft);
  margin-bottom: 0.2rem;
}

.detail-value {
  font-size: 0.95rem;
  word-break: break-word;
  white-space: pre-wrap;
}

.detail-value.empty {
  color: var(--navy-soft);
}

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

/* ---- stats dashboard ---- */
.stat-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.stat-tile {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.85rem 1.1rem;
  min-width: 140px;
  flex: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-soft);
}

.stat-value {
  font-variant-numeric: tabular-nums;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.meter {
  height: 6px;
  background: var(--wash);
  border-radius: 999px;
  margin-top: 0.6rem;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 999px;
  animation: bar-grow 0.5s ease both;
}

.stat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.stat-tab {
  padding: 0.4rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stat-tab:hover {
  background: var(--wash);
}

.stat-tab.active {
  background: var(--navy);
  color: var(--panel);
  border-color: var(--navy);
}

.stat-tab.active:hover {
  background: #101c33;
}

.breakdown-section {
  margin: 1rem 0;
  animation: breakdown-fade-in 0.3s ease;
}

@keyframes breakdown-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.breakdown-section h3 {
  margin-bottom: 0.5rem;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 3rem 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 0;
}

.bar-label {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-track {
  display: block;
  background: var(--wash);
  border-radius: 999px;
  height: 16px;
  overflow: hidden;
}

.bar-fill {
  display: block;
  background: var(--navy);
  height: 100%;
  border-radius: 999px;
  animation: bar-grow 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 0.03s);
}

@keyframes bar-grow {
  from {
    width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breakdown-section,
  .bar-fill,
  .meter-fill {
    animation: none;
  }

  .thumb-overlay {
    transition: none;
  }
}

.bar-value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-soft);
}

/* ===================================================================
   Below ~700px there's no Rows/Cards choice - always the same
   photo-forward card layout as .view-cards further down. Kept as a
   near-duplicate of that block on purpose, same as the main app's CSS.
   =================================================================== */
@media (max-width: 700px) {
  .view-switch {
    display: none;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .filter-bar select {
    width: 100%;
    min-width: 0;
  }

  .filter-bar .clear-filters-link {
    grid-column: 1 / -1;
  }

  .table-scroll {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  table {
    display: block;
    width: 100%;
    background: transparent;
  }

  thead {
    display: none;
  }

  tbody {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  tbody td {
    display: block;
    border: none;
    padding: 0.15rem 0;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  tbody td::-webkit-scrollbar {
    display: none;
  }

  .card-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-auto-flow: dense;
    align-items: start;
    column-gap: 0.5rem;
    flex: 1 1 100%;
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 0.85rem;
    padding-top: 9.25rem;
    margin: 0;
    transition: box-shadow 0.15s ease;
  }

  .card-row:hover {
    box-shadow: var(--shadow-md);
  }

  .card-row td[data-label] {
    grid-column: 1 / -1;
  }

  .card-row .cell-units {
    text-align: left;
  }

  .card-row td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: var(--navy-soft);
  }

  .card-row .cell-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8rem;
    padding: 0;
    border: none;
    overflow: hidden;
  }

  .card-row .cell-photo:hover {
    overflow: visible;
    z-index: 20;
  }

  .card-row .thumb-hover {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .card-row .thumb-preview {
    display: block;
    position: absolute;
    inset: 0;
    transform: none;
    width: 100%;
    height: 100%;
    margin: 0;
    border-width: 0 0 1px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: none;
  }

  .card-row .thumb-hover:not(.thumb-empty) svg {
    display: none;
  }

  .card-row .thumb-hover.thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--wash);
    border-bottom: 1px solid var(--line-strong);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 1;
  }

  .card-row .thumb-hover.thumb-empty svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .card-row .cell-title {
    grid-column: 1;
    min-width: 0;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    overflow: hidden;
  }

  .card-row .cell-title-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  .card-row .title-tradeable {
    display: inline-flex;
    flex: none;
    color: var(--navy-soft);
  }

  .card-row .cell-tradeable {
    display: none;
  }

  .card-row .actions {
    grid-column: 2;
    align-self: center;
    margin: 0;
    padding: 0;
    border: none;
  }
}

/* Desktop "Cards" view (opt-in via the Rows/Cards switch) */
.table-scroll.view-cards {
  overflow-x: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.view-cards table {
  display: block;
  width: 100%;
  background: transparent;
}

.view-cards thead {
  display: none;
}

.view-cards tbody {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-cards tbody td {
  display: block;
  border: none;
  padding: 0.15rem 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.view-cards tbody td::-webkit-scrollbar {
  display: none;
}

.view-cards .card-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-auto-flow: dense;
  align-items: start;
  column-gap: 0.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  padding-top: 9.25rem;
  margin: 0;
  transition: box-shadow 0.15s ease;
}

.view-cards .card-row:hover {
  box-shadow: var(--shadow-md);
}

.view-cards .card-row td[data-label] {
  grid-column: 1 / -1;
}

.view-cards .card-row .cell-units {
  text-align: left;
}

.view-cards .card-row td[data-label]::before {
  content: attr(data-label);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--navy-soft);
}

.view-cards .cell-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  padding: 0;
  border: none;
  overflow: hidden;
}

.view-cards .cell-photo:hover {
  overflow: visible;
  z-index: 20;
}

.view-cards .thumb-hover {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.view-cards .thumb-preview {
  display: block;
  position: absolute;
  inset: 0;
  transform: none;
  width: 100%;
  height: 100%;
  margin: 0;
  border-width: 0 0 1px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: none;
}

.view-cards .thumb-hover:not(.thumb-empty) svg {
  display: none;
}

.view-cards .thumb-hover.thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--wash);
  border-bottom: 1px solid var(--line-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 1;
}

.view-cards .thumb-hover.thumb-empty svg {
  width: 2.5rem;
  height: 2.5rem;
}

.view-cards .cell-title {
  grid-column: 1 / -1;
  min-width: 0;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  overflow: hidden;
}

.view-cards .cell-title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.view-cards .title-tradeable {
  display: inline-flex;
  flex: none;
  color: var(--navy-soft);
}

.view-cards .cell-tradeable {
  display: none;
}

.view-cards .card-row .actions {
  display: none;
}
