/* ============================================================
   ITIL CMDB — Asset Management Dashboard CSS
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0b1120;
  --surface:  #111827;
  --surface2: #1e2a3a;
  --surface3: #243044;
  --border:   #2d3f55;
  --text:     #e2e8f0;
  --muted:    #7a8fa6;
  --blue:     #3b82f6;
  --green:    #22c55e;
  --yellow:   #f59e0b;
  --orange:   #f97316;
  --red:      #ef4444;
  --teal:     #14b8a6;
  --purple:   #a855f7;
  --radius:   8px;
  --shadow:   0 2px 10px rgba(0,0,0,.5);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* ── Navbar ── */
.navbar {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 54px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.nav-brand {
  font-size: 17px; font-weight: 700; color: var(--blue);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
  letter-spacing: -.3px;
}
.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a {
  padding: 6px 14px; border-radius: var(--radius);
  color: var(--muted); text-decoration: none; font-size: 13px;
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--surface2); color: var(--text);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-user-badge {
  font-size: 12px; color: var(--muted);
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 99px; padding: 3px 10px;
}
.btn-nav-logout {
  font-size: 12px; color: var(--muted); text-decoration: none;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px 10px;
  transition: background .15s, color .15s;
}
.btn-nav-logout:hover { background: rgba(239,68,68,.12); color: var(--red); border-color: var(--red); }
.btn-icon {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius); width: 32px; height: 32px;
  cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.btn-icon:hover { background: var(--surface3); }

/* ── Container ── */
.container { max-width: 1440px; margin: 0 auto; padding: 24px; }

/* ── Summary Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px; margin-bottom: 20px;
}
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .cards { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); transition: border-color .2s;
}
.card:hover { border-color: var(--blue); }
.card-icon {
  font-size: 22px; width: 46px; height: 46px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-icon-blue   { background: rgba(59,130,246,.12); }
.card-icon-green  { background: rgba(34,197,94,.12);  }
.card-icon-teal   { background: rgba(20,184,166,.12); }
.card-icon-yellow { background: rgba(245,158,11,.12); }
.card-icon-orange { background: rgba(249,115,22,.12); }
.card-icon-red    { background: rgba(239,68,68,.12);  }
.card-body h2  { font-size: 26px; font-weight: 700; line-height: 1; }
.card-body p   { color: var(--muted); font-size: 11px; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

/* ── Grid layouts ── */
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 900px) { .grid-two { grid-template-columns: 1fr; } }

/* ── Panels ── */
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 16px; box-shadow: var(--shadow);
}
.panel-warn { border-color: var(--yellow); background: rgba(245,158,11,.06); }

.panel-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 16px; display: flex; align-items: center; gap: 7px;
}
.panel-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.panel-header .panel-title { margin-bottom: 0; }

.count-badge {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); border-radius: 9999px; font-size: 11px; font-weight: 600;
  padding: 1px 8px; margin-left: 4px;
}

/* ── Toolbar ── */
.toolbar { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.search-input {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 12px; color: var(--text);
  font-size: 13px; min-width: 220px;
}
.search-input:focus { outline: none; border-color: var(--blue); }
.select-input {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 10px; color: var(--text);
  font-size: 13px; cursor: pointer;
}
.select-input:focus { outline: none; border-color: var(--blue); }
.btn-sm {
  background: var(--blue); color: #fff; border: none;
  border-radius: var(--radius); padding: 5px 12px;
  cursor: pointer; font-size: 12px; font-weight: 500; white-space: nowrap;
}
.btn-sm:hover { opacity: .85; }
.btn-outline {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  border-radius: var(--radius); padding: 6px 12px; cursor: pointer;
  font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 5px;
  transition: background .15s;
}
.btn-outline:hover { background: var(--surface2); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table thead th {
  background: var(--surface2); color: var(--muted);
  text-align: left; padding: 9px 12px; font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.table tbody tr:hover { background: var(--surface2); }
.table tbody td {
  padding: 9px 12px; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}
.table a { color: var(--blue); text-decoration: none; }
.table a:hover { text-decoration: underline; }

/* ── Host cell ── */
.host-cell { display: flex; align-items: center; gap: 10px; }
.host-icon { font-size: 20px; color: var(--blue); }
.hostname-link { font-weight: 600; color: var(--blue); }
.ram-badge {
  background: rgba(20,184,166,.12); color: var(--teal);
  border-radius: 4px; padding: 1px 7px; font-size: 12px; font-weight: 600;
}
.ip-code {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 6px; font-size: 11px; color: var(--muted);
}

/* ── Diff cell ── */
.diff-cell { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.diff-old { color: var(--red); text-decoration: line-through; font-size: 12px; }
.diff-new { color: var(--green); font-size: 12px; }
.diff-arrow { color: var(--muted); font-size: 12px; }

/* ── Bar Chart ── */
.chart-area { display: flex; flex-direction: column; gap: 10px; }
.chart-row { display: flex; align-items: center; gap: 10px; }
.chart-label { width: 160px; font-size: 12px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-shrink: 0; }
.chart-bar-wrap { flex: 1; background: var(--surface2); border-radius: 4px; height: 10px; }
.chart-bar-fill { background: var(--blue); border-radius: 4px; height: 10px; min-width: 4px; transition: width .4s; }
.chart-count { width: 28px; text-align: right; font-size: 12px; font-weight: 600; color: var(--text); }

/* ── Badges ── */
.badge {
  display: inline-block; padding: 2px 8px; border-radius: 9999px;
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.badge-green  { background: rgba(34,197,94,.15);  color: var(--green);  }
.badge-yellow { background: rgba(245,158,11,.15); color: var(--yellow); }
.badge-orange { background: rgba(249,115,22,.15); color: var(--orange); }
.badge-red    { background: rgba(239,68,68,.15);  color: var(--red);    }
.badge-blue   { background: rgba(59,130,246,.15); color: var(--blue);   }
.badge-teal   { background: rgba(20,184,166,.15); color: var(--teal);   }
.badge-purple { background: rgba(168,85,247,.15); color: var(--purple); }
.badge-gray   { background: rgba(120,140,160,.12); color: var(--muted); }

/* ── Pagination ── */
.pagination { display: flex; gap: 5px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.page-btn {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 5px 12px; cursor: pointer;
  color: var(--text); font-size: 13px; transition: background .15s;
}
.page-btn.active, .page-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── Stale List ── */
.stale-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.stale-list li { font-size: 13px; }

/* ── Breadcrumb ── */
.breadcrumb { color: var(--muted); margin-bottom: 16px; font-size: 13px; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── KV List ── */
.kv-list { display: grid; grid-template-columns: 40% 60%; gap: 7px 12px; }
.kv-list dt { color: var(--muted); font-size: 12px; padding-top: 2px; }
.kv-list dd { word-break: break-all; font-size: 13px; }

/* ── Tabs ── */
.tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border); margin-bottom: 16px; padding-bottom: 10px;
}
.tab-btn {
  background: transparent; border: 1px solid transparent;
  border-radius: var(--radius); padding: 6px 14px; cursor: pointer;
  color: var(--muted); font-size: 13px; transition: .15s;
}
.tab-btn:hover { background: var(--surface2); color: var(--text); }
.tab-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-toolbar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px;
}

/* ── Asset Header ── */
.asset-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-bottom: 16px;
  border-left: 4px solid var(--blue);
}
.asset-header-left { display: flex; align-items: center; gap: 16px; }
.asset-icon { font-size: 40px; }
.asset-header-left h1 { font-size: 22px; font-weight: 700; }
.asset-meta { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.meta-chip {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 8px; font-size: 12px; color: var(--muted);
}
.asset-header-right { display: flex; gap: 24px; }
.asset-stat label { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }

/* ── Sub-label ── */
.sub-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }

/* ── Simple list ── */
.simple-list { list-style: none; }
.simple-list li { padding: 4px 0; font-size: 13px; border-bottom: 1px solid var(--border); }

/* ── Toggle ── */
.toggle-label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); cursor: pointer; }

/* ── Connectivity ── */
.conn-banner {
  border-radius: var(--radius); padding: 8px 14px; font-size: 13px;
  font-weight: 600; margin-bottom: 12px;
}
.conn-banner-green  { background: rgba(34,197,94,.12);  color: var(--green);  border: 1px solid rgba(34,197,94,.3);  }
.conn-banner-yellow { background: rgba(245,158,11,.12); color: var(--yellow); border: 1px solid rgba(245,158,11,.3); }
.conn-banner-red    { background: rgba(239,68,68,.12);  color: var(--red);    border: 1px solid rgba(239,68,68,.3);  }

.conn-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.conn-row:last-child { border-bottom: none; }
.conn-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.conn-dot-green  { background: var(--green);  box-shadow: 0 0 6px rgba(34,197,94,.6);  }
.conn-dot-red    { background: var(--red);    box-shadow: 0 0 6px rgba(239,68,68,.6);  }
.conn-info { display: flex; flex-direction: column; min-width: 140px; }
.conn-name { font-weight: 600; }
.conn-host { font-size: 11px; color: var(--muted); background: none; border: none; padding: 0; }
.conn-rtt  { margin-left: auto; font-size: 12px; color: var(--muted); text-align: right; }

/* ── Text utilities ── */
.text-muted  { color: var(--muted); }
.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.font-sm     { font-size: 12px; }
code { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 1px 5px; font-size: 12px; }

/* ── Text utilities (extended) ── */
.text-green { color: var(--green); }

/* ── Relationship Badges ── */
.rel-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.rel-depends_on  { background: rgba(239,68,68,.15);   color: var(--red);    }
.rel-runs_on     { background: rgba(59,130,246,.15);  color: var(--blue);   }
.rel-connects_to { background: rgba(20,184,166,.15);  color: var(--teal);   }
.rel-hosts       { background: rgba(34,197,94,.15);   color: var(--green);  }
.rel-managed_by  { background: rgba(168,85,247,.15);  color: var(--purple); }
.rel-backed_up_by{ background: rgba(245,158,11,.15);  color: var(--yellow); }

/* ── Service Map (rel row inside tabs/cards) ── */
.smap-rel-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.smap-rel-row:last-child { border-bottom: none; }

/* ── Service Map Cards (global page) ── */
.smap-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.smap-card-header {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2); padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.smap-icon { font-size: 22px; }
.smap-card-body { padding: 12px 16px; }
.smap-section { margin-bottom: 10px; }
.smap-section:last-child { margin-bottom: 0; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
}
.modal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.7);
  width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 15px; font-weight: 700; }
.modal-close {
  background: none; border: none; color: var(--muted); font-size: 18px;
  cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-footer {
  display: flex; justify-content: flex-end; gap: 8px;
  padding: 12px 20px; border-top: 1px solid var(--border);
}

/* ── Form grid inside modals ── */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; padding: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-span2 { grid-column: span 2; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text); padding: 7px 10px; font-size: 13px;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 60px; }
.req { color: var(--red); }

/* ── License-specific ── */
.ltype-badge {
  display: inline-block; padding: 1px 7px; border-radius: 4px;
  font-size: 11px; font-weight: 600;
  background: rgba(59,130,246,.15); color: var(--blue);
}
.btn-danger {
  background: rgba(239,68,68,.15); color: var(--red);
  border: 1px solid rgba(239,68,68,.3);
}
.btn-danger:hover { background: var(--red); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 6px; font-size: 13px;
  border: 1px solid var(--border); color: var(--muted);
  background: none; cursor: pointer; text-decoration: none;
}
.btn-outline:hover { color: var(--text); border-color: var(--blue); }
.link-subtle { color: var(--blue); text-decoration: none; }
.link-subtle:hover { text-decoration: underline; }
.text-center { text-align: center; }
.sub-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }

/* ── Health Ring (CI detail header) ── */
.health-ring-wrap {
  position: relative; width: 70px; height: 70px; flex-shrink: 0;
}
.health-ring { width: 70px; height: 70px; transform: rotate(-90deg); }
.health-ring-bg   { fill: none; stroke: var(--surface2); stroke-width: 6; }
.health-ring-fill {
  fill: none; stroke: var(--green); stroke-width: 6;
  stroke-linecap: round; transition: stroke-dasharray .6s ease;
}
.health-ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.health-ring-label span:first-child { font-size: 15px; font-weight: 700; line-height: 1; }
.health-ring-sub { font-size: 9px; color: var(--muted); margin-top: 2px; }

/* ── Health Check Cards ── */
.health-checks-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px;
}
.health-check-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
}
.health-check-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.health-check-name  { flex: 1; font-weight: 600; font-size: 13px; }
.health-check-pts   { font-size: 12px; color: var(--muted); }
.health-check-bar-track {
  height: 5px; background: var(--surface3); border-radius: 3px; overflow: hidden; margin-bottom: 6px;
}
.health-check-bar-fill {
  height: 100%; border-radius: 3px; transition: width .4s ease;
}
.health-check-detail { font-size: 12px; color: var(--muted); }

/* ── Health Score Pill (dashboard table) ── */
.health-score-pill {
  display: inline-block; min-width: 34px; padding: 2px 7px;
  border-radius: 12px; font-weight: 700; font-size: 13px;
  color: #fff; text-align: center;
}

/* ── Fleet Health Overview (dashboard) ── */
.health-dist-track {
  height: 16px; border-radius: 8px; overflow: hidden;
  background: var(--surface2); display: flex;
}
.health-dist-segment { height: 100%; transition: width .4s ease; }
.health-stat-chip {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 16px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface2);
}
.health-chip-num { font-size: 22px; font-weight: 700; line-height: 1; }
.health-chip-lbl { font-size: 10px; color: var(--muted); }

/* badge-orange for At Risk */
.badge-orange { background: rgba(249,115,22,.15); color: var(--orange); }
.badge-teal   { background: rgba(20,184,166,.15);  color: var(--teal);   }

/* ── License page stat cards ─────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.stat-icon {
  font-size: 22px;
  width: 46px; height: 46px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.si-blue   { background: rgba(59,130,246,.12); }
.si-green  { background: rgba(34,197,94,.12);  }
.si-teal   { background: rgba(20,184,166,.12); }
.si-yellow { background: rgba(245,158,11,.12); }
.si-orange { background: rgba(249,115,22,.12); }
.si-red    { background: rgba(239,68,68,.12);  }
.si-purple { background: rgba(168,85,247,.12); }
.stat-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.stat-info .stat-value { font-size: 26px; font-weight: 700; line-height: 1; }
.stat-info .stat-label { color: var(--muted); font-size: 11px; margin-top: 2px; text-transform: uppercase; letter-spacing: .05em; }

/* ── Bandwidth bars (adapter throughput visualisation) ───────────────────── */
.bw-adapter-row {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 8px;
}
.bw-adapter-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.bw-bar-group { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.bw-bar-label { font-size: 11px; color: var(--muted); width: 100px; flex-shrink: 0; }
.bw-val       { font-weight: 600; color: var(--text); margin-left: 4px; }
.bw-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
}
.bw-bar-fill  { height: 100%; border-radius: 4px; transition: width .3s; min-width: 2px; }
.bw-rx        { background: var(--green); }
.bw-tx        { background: var(--yellow); }

/* ── Process connections panel ───────────────────────────────────────────── */
.proc-conn-grid { display: flex; flex-direction: column; gap: 4px; }
.proc-conn-row  { display: flex; align-items: center; gap: 10px; }
.proc-conn-name {
  width: 160px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.proc-conn-bar-wrap { display: flex; align-items: center; gap: 8px; flex: 1; }
.proc-conn-count    { font-size: 11px; color: var(--muted); width: 54px; text-align: right; flex-shrink: 0; }
