/* ---------- Tokens ---------- */
:root {
  --accent: #22d3a8;
  --danger: oklch(0.62 0.20 28);
  --warn: oklch(0.78 0.15 75);
  --ok: oklch(0.72 0.14 150);
  --info: oklch(0.74 0.12 230);
  --radius: 6px;
  --radius-lg: 10px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", "Menlo", "Consolas", monospace;
}

[data-theme="dark"] {
  --bg: oklch(0.18 0.008 240);
  --bg-2: oklch(0.21 0.008 240);
  --panel: oklch(0.235 0.008 240);
  --panel-2: oklch(0.27 0.008 240);
  --border: oklch(0.31 0.008 240);
  --border-strong: oklch(0.38 0.008 240);
  --text: oklch(0.96 0.005 240);
  --text-dim: oklch(0.65 0.008 240);
  --text-muted: oklch(0.5 0.008 240);
  --floor-bg: oklch(0.22 0.008 240);
  --grid-line: oklch(0.28 0.008 240);
  --hatch: oklch(0.3 0.008 240);
  --wall: oklch(0.42 0.01 240);
  --rack-fill: oklch(0.36 0.008 240);
  --rack-border: oklch(0.46 0.008 240);
  --rack-front: oklch(0.55 0.008 240);
  --rack-text: oklch(0.98 0 0);
  --rack-text-dim: oklch(0.78 0.008 240);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.35);
  --shadow-tooltip: 0 12px 40px rgba(0,0,0,.5), 0 1px 0 oklch(0.32 0.008 240);
}

[data-theme="light"] {
  --bg: oklch(0.985 0.003 240);
  --bg-2: oklch(0.97 0.005 240);
  --panel: oklch(1 0 0);
  --panel-2: oklch(0.985 0.003 240);
  --border: oklch(0.91 0.004 240);
  --border-strong: oklch(0.84 0.005 240);
  --text: oklch(0.22 0.01 240);
  --text-dim: oklch(0.45 0.01 240);
  --text-muted: oklch(0.6 0.008 240);
  --floor-bg: oklch(0.96 0.004 240);
  --grid-line: oklch(0.91 0.004 240);
  --hatch: oklch(0.86 0.005 240);
  --wall: oklch(0.42 0.01 240);
  --rack-fill: oklch(0.93 0.005 240);
  --rack-border: oklch(0.78 0.008 240);
  --rack-front: oklch(0.6 0.008 240);
  --rack-text: oklch(0.22 0.01 240);
  --rack-text-dim: oklch(0.45 0.01 240);
  --shadow-soft: 0 1px 2px rgba(15,23,42,.06), 0 6px 18px rgba(15,23,42,.08);
  --shadow-tooltip: 0 12px 40px rgba(15,23,42,.18), 0 1px 0 rgba(15,23,42,.04);
}

/* Aesthetic variants */
[data-aesthetic="linear"] {
  --radius: 8px;
  --radius-lg: 14px;
  --font: "Inter", -apple-system, system-ui, sans-serif;
}
[data-aesthetic="industrial"] {
  --radius: 2px;
  --radius-lg: 4px;
  --font: "JetBrains Mono", "SF Mono", monospace;
}
[data-aesthetic="industrial"][data-theme="dark"] {
  --bg: oklch(0.16 0.005 200);
  --panel: oklch(0.2 0.005 200);
  --floor-bg: oklch(0.19 0.005 200);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- App layout ---------- */
.app {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100vh;
}
.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg);
}
.content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 0;
  gap: 0;
}

/* ---------- Nav sidebar ---------- */
.nav-sidebar {
  width: 220px;
  background: var(--panel);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: width .2s ease;
}
.nav-sidebar.collapsed { width: 56px; }
.nav-brand {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: oklch(0.18 0.01 240);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-text { line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.brand-sub { font-size: 10px; color: var(--text-dim); font-family: var(--mono); }

.nav-list {
  padding: 12px 8px;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 2px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.nav-item:hover { background: var(--bg-2); color: var(--text); }
.nav-item.active {
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  color: var(--text);
}
.nav-item.active::before {
  content: "";
  position: absolute;
  left: -8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.nav-icon { display: grid; place-items: center; width: 18px; flex-shrink: 0; }
.nav-label { flex: 1; }
.nav-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-dim);
  font-family: var(--mono);
}
.nav-badge.danger { background: color-mix(in oklch, var(--danger) 18%, transparent); color: var(--danger); }
.nav-foot {
  padding: 8px;
  border-top: 1px solid var(--border);
}
.nav-collapse {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  color: var(--text-dim);
  border-radius: var(--radius);
  font-size: 12px;
}
.nav-collapse:hover { background: var(--bg-2); color: var(--text); }
.nav-sidebar.collapsed .nav-collapse svg { transform: rotate(180deg); }
.nav-sidebar:not(.collapsed) .nav-collapse svg { transform: rotate(180deg); }

/* ---------- Topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  flex-shrink: 0;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); }
.breadcrumb a:hover { color: var(--text); }
.bc-sep { color: var(--text-muted); }
.bc-current { color: var(--text); font-weight: 600; }

.topbar-search {
  flex: 1;
  max-width: 480px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.topbar-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  outline: none;
  font-family: inherit;
}
.topbar-search input::placeholder { color: var(--text-muted); }
.topbar-search kbd {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 6px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--text-dim);
}

.topbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  position: relative;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius);
  color: var(--text-dim);
}
.icon-btn:hover { background: var(--bg-2); color: var(--text); }
.icon-btn.small { width: 26px; height: 26px; }
.icon-btn .dot {
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--panel);
}
.user-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 50%, var(--info)));
  color: oklch(0.18 0.01 240);
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
}
.user-meta { line-height: 1.1; }
.user-name { font-size: 12px; font-weight: 600; }
.user-role { font-size: 10px; color: var(--text-dim); font-family: var(--mono); }

/* ---------- Canvas area ---------- */
.canvas-area {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  position: relative;
  background: var(--bg);
}
.canvas-head {
  padding: 16px 24px 14px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.canvas-title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.canvas-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.meta-sep { color: var(--text-muted); }
.dot-pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--ok) 60%, transparent);
  animation: pulse 2s infinite;
  margin-left: 2px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--ok) 60%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.canvas-head-right {
  margin-left: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.badge.ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
}

/* Layer toggle */
.layer-toggle {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
  gap: 2px;
}
.layer-toggle button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  transition: background .15s, color .15s;
}
.layer-toggle button:hover { color: var(--text); }
.layer-toggle button.active {
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
[data-theme="light"] .layer-toggle button.active { box-shadow: 0 1px 2px rgba(15,23,42,.06); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--panel);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  height: 32px;
}
.btn:hover { background: var(--bg-2); }
.btn.ghost { background: transparent; border-color: var(--border); }
.btn.ghost:hover { background: var(--bg-2); }
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(0.18 0.01 240);
  font-weight: 600;
}
.btn.primary:hover { filter: brightness(1.06); }

/* Edit toolbar */
.edit-toolbar {
  margin: 12px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: color-mix(in oklch, var(--accent) 8%, var(--panel));
  border: 1px solid color-mix(in oklch, var(--accent) 30%, var(--border));
  border-radius: var(--radius-lg);
}
.edit-tools { display: flex; gap: 4px; }
.edit-tools button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 12px;
  border-radius: var(--radius);
}
.edit-tools button:hover { background: var(--bg-2); color: var(--text); }
.edit-tools button.active {
  background: var(--panel);
  border-color: var(--border-strong);
  color: var(--text);
}
.edit-actions { display: flex; gap: 8px; }

/* ---------- Floor canvas ---------- */
.floor-canvas {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.floor-canvas svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .15s ease;
}
.canvas-controls {
  position: absolute;
  bottom: 80px;
  right: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 4px;
  gap: 2px;
  box-shadow: var(--shadow-soft);
}
.canvas-controls button {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  border-radius: 4px;
}
.canvas-controls button:hover { background: var(--bg-2); color: var(--text); }
.canvas-zoom-label {
  font-size: 10px;
  font-family: var(--mono);
  color: var(--text-dim);
  text-align: center;
  padding: 2px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}

/* Rack node */
.rack-node {
  cursor: pointer;
  transition: filter .12s;
}
.rack-node:hover {
  filter: brightness(1.12);
}
.rack-node.selected rect:first-of-type {
  filter: drop-shadow(0 0 0 3px color-mix(in oklch, var(--accent) 30%, transparent));
}
.rack-node.editing { cursor: grab; }
.rack-node.editing:active { cursor: grabbing; }

/* Legend */
.legend {
  position: absolute;
  bottom: 16px;
  left: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 280px;
  box-shadow: var(--shadow-soft);
}
.legend-title {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-dim);
  font-family: var(--mono);
}
.legend-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.legend-bar span { flex: 1; }
.legend-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-dim);
  font-family: var(--mono);
}
.legend-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-dim); }
.chip i { width: 8px; height: 8px; border-radius: 50%; display: block; }

/* ---------- Tooltip ---------- */
.rack-tooltip-anchor {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 50;
  will-change: transform;
}
.rack-tooltip {
  width: 320px;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-tooltip);
}
@keyframes tt-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.tt-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.tt-title { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: .02em; }
.tt-status { font-size: 10px; font-family: var(--mono); font-weight: 600; }
.tt-status.status-ok { color: var(--ok); }
.tt-status.status-warning { color: var(--warn); }
.tt-status.status-critical { color: var(--danger); }
.tt-body { display: grid; grid-template-columns: 50px 1fr; gap: 12px; }

.mini-rack {
  height: 130px;
}
.mini-rack-frame {
  height: 100%;
  background: oklch(0.18 0.01 240);
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
[data-theme="light"] .mini-rack-frame {
  background: oklch(0.9 0.005 240);
}
.mini-u {
  border-radius: 1px;
}
.mini-u.filled {
  background: linear-gradient(180deg, oklch(0.5 0.008 240), oklch(0.42 0.008 240));
  border-bottom: 1px solid oklch(0.32 0.008 240);
}
[data-theme="light"] .mini-u.filled {
  background: linear-gradient(180deg, oklch(0.62 0.008 240), oklch(0.52 0.008 240));
}
.mini-u.empty {
  background: transparent;
  border-top: 1px dashed oklch(0.3 0.005 240);
}
[data-theme="light"] .mini-u.empty {
  border-top: 1px dashed oklch(0.78 0.005 240);
}

.tt-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.tt-stat-label {
  font-size: 9px;
  font-family: var(--mono);
  color: var(--text-dim);
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.tt-stat-value {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: -0.02em;
}
.tt-stat-value span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 2px;
}
.tt-bar {
  margin-top: 4px;
  height: 3px;
  background: var(--bg-2);
  border-radius: 2px;
  overflow: hidden;
}
.tt-bar-fill { height: 100%; }

/* ---------- Detail panel ---------- */
.detail-panel {
  border-left: 1px solid var(--border);
  background: var(--panel);
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dp-section {}
.dp-section.dense > * + * { margin-top: 6px; }
.dp-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  font-weight: 600;
  font-family: var(--mono);
  margin-bottom: 8px;
}
.dp-section-sub { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

.dp-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.dp-title {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.dp-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

.dp-status {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.dp-status.status-ok { background: color-mix(in oklch, var(--ok) 10%, transparent); border-color: color-mix(in oklch, var(--ok) 30%, var(--border)); color: var(--text); }
.dp-status.status-warning { background: color-mix(in oklch, var(--warn) 12%, transparent); border-color: color-mix(in oklch, var(--warn) 35%, var(--border)); }
.dp-status.status-critical { background: color-mix(in oklch, var(--danger) 12%, transparent); border-color: color-mix(in oklch, var(--danger) 40%, var(--border)); }

.detail-panel .mini-rack { height: 90px; }

.dp-metrics { display: flex; flex-direction: column; gap: 14px; }
.metric .metric-head {
  display: flex; justify-content: space-between;
  margin-bottom: 6px;
}
.metric-label { font-size: 12px; color: var(--text-dim); font-weight: 500; }
.metric-val { font-size: 12px; font-family: var(--mono); font-weight: 600; }
.metric-bar {
  height: 6px;
  background: var(--bg-2);
  border-radius: 3px;
  overflow: hidden;
}
.metric-bar div { height: 100%; }
.metric-foot {
  margin-top: 4px;
  font-size: 10px;
  color: var(--text-dim);
  font-family: var(--mono);
}

.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 36px;
  padding: 4px 0;
}
.sparkline span {
  flex: 1;
  border-radius: 1px;
  opacity: .85;
  min-height: 4px;
}

.dp-actions { display: flex; gap: 8px; }
.dp-actions .btn { flex: 1; justify-content: center; }

.eq-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.eq-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: var(--bg-2);
  font-size: 12px;
  align-items: center;
}
.eq-list li:hover { background: var(--panel-2); cursor: pointer; }
.eq-u { font-family: var(--mono); font-size: 10px; color: var(--text-dim); }
.eq-name { font-family: var(--mono); font-size: 11px; }
.eq-type { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .04em; }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
}
.kpi-label {
  font-size: 9px;
  font-family: var(--mono);
  color: var(--text-dim);
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.kpi-value {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpi-suffix { font-size: 12px; font-weight: 500; color: var(--text-dim); margin-left: 2px; }
.kpi-sub { font-size: 10px; color: var(--text-dim); font-family: var(--mono); margin-top: 4px; }
.kpi-bar {
  margin-top: 6px;
  height: 4px;
  background: var(--panel);
  border-radius: 2px;
  overflow: hidden;
}
.kpi-bar div { height: 100%; }

.temp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.temp-row > div {
  padding: 10px 12px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.temp-row > div:last-child { border-right: 0; }
.t-label { font-size: 9px; color: var(--text-dim); font-family: var(--mono); letter-spacing: .08em; }
.t-val { font-size: 18px; font-weight: 700; font-family: var(--mono); }

.activity { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.activity li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.activity li:last-child { border-bottom: 0; }
.a-time { font-size: 10px; font-family: var(--mono); color: var(--text-dim); }

.dp-hint {
  margin-top: auto;
  padding: 12px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-style: italic;
}
