/* ============================================================
   VTM GS Viewer — 藍白主題，左側垂直 Nav + 右側面板
   主色：深海軍藍 #152242（參考 Logo 文字色）
   ============================================================ */

:root {
  --navy:       #152242;   /* VTM logo 文字深藍 */
  --navy-light: #1e3360;   /* hover 稍亮 */
  --cyan:       #06b6d4;   /* logo 方塊青藍色 */
  --cyan-light: #22d3ee;   /* logo 方塊亮面 */
  --navy-icon:  rgba(255,255,255,0.72);
  --navy-icon-active: #ffffff;
  --panel-bg:   #ffffff;
  --panel-border: rgba(21,34,66,0.12);
  --input-bg:   #f4f7fc;
  --input-border: #d0d9ea;
  --text:       #152242;
  --text-muted: #6878a0;
  --accent:     #0ea5e9;   /* 呼應 logo 方塊青藍 */
  --accent-hover: #0284c7;
  --success:    #059669;
  --radius:     10px;
  --radius-sm:  6px;
  --sidebar-w:  56px;
  --panel-w:    280px;
  --top-bar-h:  56px;   /* 頂部橫條高度，對應 UI 在其下方 */
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d1117;
  color: var(--text);
}

/* === Viewport 全螢幕 === */
#viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

#viewport.avatar-move-cursor { cursor: cell; }

/* ============================================================
   頂部橫條：Logo 左、navbar 橫向在右（參考圖：橫向圖標列）
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--top-bar-h);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  pointer-events: none; /* 僅子元素可點 */
}

.top-bar > * {
  pointer-events: auto;
}

/* Logo：可點擊隱藏/展開 navbar，不做成按鈕樣式（無邊框、無背景） */
.vtm-logo {
  position: relative;
  z-index: 150;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  transition: opacity 0.2s;
}

.vtm-logo:hover {
  opacity: 0.9;
}

.vtm-logo:active {
  opacity: 0.85;
}

.vtm-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  display: block;
  vertical-align: middle;
}

/* 橫向 navbar（深灰圓角條，圖標橫向排列） */
.navbar {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.25s ease, visibility 0.25s ease, max-width 0.25s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* navbar 按鈕（橫向排列） */
.sb-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--navy-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.sb-btn svg {
  width: 22px;
  height: 22px;
}

.sb-btn:hover {
  background: var(--navy-light);
  color: var(--navy-icon-active);
}

.sb-btn.active {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* ============================================================
   功能面板（在 navbar 下方顯示）
   ============================================================ */
.side-panel {
  position: fixed;
  top: calc(var(--top-bar-h) + 12px);   /* navbar 下方 */
  left: calc(16px + 12px);              /* 與頂欄左側對齊，略留間距 */
  z-index: 190;
  width: var(--panel-w);
  max-height: calc(100vh - 32px);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(21,34,66,0.18);
  overflow: hidden auto;
  display: none;
  flex-direction: column;
  padding: 0;
}

.side-panel.open {
  display: flex;
}

/* 面板標題列 */
.sp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--panel-border);
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
}

.sp-header span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.sp-close {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.sp-close:hover { background: rgba(255,255,255,0.22); }

/* 面板內容區 */
.side-panel > *:not(.sp-header) {
  padding: 0 16px;
}

.side-panel > .sp-header + * {
  margin-top: 14px;
}

.side-panel > *:last-child {
  margin-bottom: 16px;
}

.sp-section {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 12px 0 8px;
}

.sp-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.sp-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.sp-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.sp-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.sp-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.sp-divider {
  height: 1px;
  background: var(--panel-border);
  margin: 10px 0;
}

.sp-log {
  height: 120px;
  overflow: auto;
  background: #f0f4f8;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  color: #344060;
  line-height: 1.45;
}

.sp-list {
  max-height: 110px;
  overflow: auto;
  background: #f0f4f8;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text);
}

.status-text {
  font-size: 12px;
  color: var(--success);
  margin: 8px 0 0;
}

/* 模型面板：簡潔樣式 */
.panel-model .panel-model-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-model .panel-model-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.panel-model .panel-model-search {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--input-border);
  background: #fff;
  color: var(--text);
}

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

.panel-model .panel-model-search:focus {
  outline: none;
  border-color: var(--accent);
}

.panel-model-list {
  width: 100%;
  max-height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  background: #fff;
  margin-top: 6px;
}

.panel-model-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--panel-border);
  transition: background 0.12s;
}

.panel-model-item:last-child { border-bottom: none; }

.panel-model-item:hover {
  background: var(--input-bg);
}

.panel-model-item.selected {
  background: rgba(14, 165, 233, 0.12);
  color: var(--navy);
}

.panel-model-item-num {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 1.6em;
}

.panel-model-item.selected .panel-model-item-num {
  color: var(--accent);
}

.panel-model-item-name {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  line-height: 1.4;
}

.panel-model .panel-model-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.panel-model .btn-panel-secondary {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  background: var(--input-bg);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.panel-model .btn-panel-secondary:hover {
  background: #e8eef6;
  border-color: var(--navy-light);
}

.panel-model .panel-model-status {
  font-size: 13px;
  margin: 4px 0 0;
  min-height: 20px;
  color: var(--success);
}

/* ============================================================
   表單 & 按鈕
   ============================================================ */
input[type="text"],
input[type="number"],
select {
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

button {
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

button:hover {
  border-color: var(--accent);
  background: #e8f0ff;
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* Toggle 開關 */
.toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d0d9ea;
  border-radius: 11px;
  transition: 0.2s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle-slider { background: var(--accent); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

/* 單選按鈕組（取代下拉框） */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.radio-group input[type="hidden"] {
  display: none;
}

.radio-option {
  width: auto;
  padding: 7px 14px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.radio-option:hover {
  border-color: var(--accent);
  color: var(--text);
  background: #e8f0ff;
}

.radio-option.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.radio-option.selected:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
}

/* Profile 滑桿（參考圖：橫向滑桿 5 檔） */
.profile-slider-wrap {
  margin-bottom: 14px;
}

.profile-slider-wrap input[type="range"] {
  width: 100%;
  height: 6px;
  margin: 0 0 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--input-bg) 0%, var(--input-border) 100%);
  border-radius: 3px;
  outline: none;
}

.profile-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.15s;
}

.profile-slider-wrap input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.profile-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.profile-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  padding: 0 2px;
}

/* list-item */
.list-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid #e0e8f0;
  padding: 5px 0;
}

.list-item:last-child { border-bottom: 0; }

.list-item button {
  width: auto;
  padding: 3px 8px;
  font-size: 11px;
}

.measure-list-item {
  grid-template-columns: 1fr auto;
}
.measure-item-text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.measure-item-num {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 11px;
  min-width: 1.4em;
}
.measure-item-distance {
  color: var(--text);
}
.measure-list-item .btn-measure-delete {
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
}
.measure-list-item .btn-measure-delete:hover {
  background: #e8eef6;
  color: var(--text);
}

/* 清除全部量測數據按鈕 */
#panelMeasure .btn-clear-all-measure {
  width: 100%;
  margin-top: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #5f7198;
  background: #f4f7fc;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
#panelMeasure .btn-clear-all-measure:hover {
  background: #eef2f8;
  border-color: #c9d4e4;
  color: #152242;
}
#panelMeasure .btn-clear-all-measure:active {
  background: #e0e8f0;
}

/* VTM Logo 樣式已併入 .top-bar 區塊 */

/* ============================================================
   載入進度 右上角（loading 動效）
   ============================================================ */
.loading-indicator {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 160px;
  padding: 14px 18px;
  background: rgba(21,34,66,0.94);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.loading-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, visibility 0.35s;
}

.loading-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loading-spinner {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.loading-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan-light), var(--cyan));
  border-radius: 2px;
  transition: width 0.2s ease-out;
}

.loading-percent {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* Navbar 初始隱藏，載入完成後顯示；點擊 Logo 可切換 .collapsed */
.navbar:not(.loaded) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 0;
  overflow: hidden;
}

.navbar.loaded {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-width: none;
}

.navbar.loaded.collapsed {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ============================================================
   放大鏡
   ============================================================ */
.magnifier { display: none; position: absolute; z-index: 15; pointer-events: none; }
.magnifier.visible { display: block; }

.magnifier-glass {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.8);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.3);
  background: #0d1117;
  position: relative;
}

.magnifier-glass canvas { width: 100%; height: 100%; display: block; }

.magnifier-crosshair {
  position: absolute; left: 50%; top: 50%;
  width: 2px; height: 20px; margin: -10px 0 0 -1px;
  background: rgba(255,80,80,0.9); pointer-events: none;
}

.magnifier-crosshair::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; margin: -1px 0 0 -10px;
  background: rgba(255,80,80,0.9);
}

.measure-label {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: rgba(21,34,66,0.85);
  color: #8ecfff;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
}

/* ============================================================
   Help 覆蓋層
   ============================================================ */
.help-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.help-overlay.visible { opacity: 1; visibility: visible; }

.help-dialog {
  position: relative;
  width: 90%;
  max-width: 520px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(21,34,66,0.25);
}

.help-title { margin: 0 0 4px; font-size: 26px; font-weight: 700; color: var(--navy); }
.help-desc { margin: 0 0 16px; font-size: 13px; color: var(--text-muted); }

.help-mode-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.help-mode-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 12px 8px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.help-mode-tab:hover {
  background: #e8eef6;
  border-color: var(--navy-light);
  color: var(--navy);
}

.help-mode-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.help-mode-tab svg { width: 22px; height: 22px; flex-shrink: 0; }

.help-panel { margin-bottom: 8px; }
.help-panel.hidden { display: none; }
.hidden { display: none !important; }

/* Relocate 面板 */
.panel-relocate-body { padding: 16px; }
.relocate-admin-section { margin-top: 12px; }
.panel-relocate-status { font-size: 12px; margin-top: 8px; min-height: 18px; }

/* 點位面板（與模型面板同風格） */
.panel-points .panel-points-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.panel-points .panel-model-list { max-height: 180px; }
.points-admin-section { margin-top: 8px; }
.panel-points-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--panel-border); }
.panel-points-item:last-child { border-bottom: none; }
.panel-points-item-num { flex-shrink: 0; font-weight: 600; color: var(--text-muted); min-width: 1.8em; }
.panel-points-item-name { flex: 1; min-width: 0; word-break: break-word; font-size: 13px; }
.panel-points-item-actions { flex-shrink: 0; display: flex; gap: 6px; }
.panel-points-item-actions button { width: auto; min-width: 0; padding: 4px 8px; font-size: 12px; }

.help-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.help-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.help-control span { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.help-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.help-keys kbd { grid-column: 2; grid-row: 1; }
.help-keys kbd:nth-child(2) { grid-column: 1; grid-row: 2; }
.help-keys kbd:nth-child(3) { grid-column: 2; grid-row: 2; }
.help-keys kbd:nth-child(4) { grid-column: 3; grid-row: 2; }

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy);
}

.kbd-wide { min-width: 70px; }

.help-mouse {
  width: 38px;
  height: 46px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px 6px 18px 18px;
  position: relative;
}

.help-mouse-click::after {
  content: "";
  position: absolute;
  left: 5px; top: 7px;
  width: 12px; height: 14px;
  background: rgba(37,99,235,0.25);
  border-radius: 2px;
}

.help-mouse-rotate::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

.help-mouse-scroll::after {
  content: "";
  position: absolute;
  left: 50%; top: 10px;
  width: 4px; height: 12px;
  margin-left: -2px;
  background: var(--text-muted);
  border-radius: 2px;
  opacity: 0.5;
}

.help-close {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-muted);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.help-close:hover { color: var(--navy); background: #dce8ff; border-color: var(--accent); }
