﻿/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
button, input, select, textarea { font-family: inherit; }

/* ── DESIGN TOKENS ───────────────────────────── */
:root {
  /* Backgrounds */
  --bg0:    #eaecf0;
  --bg:     #f5f6f8;
  --bg1:    #ffffff;
  --bg2:    #f0f2f5;
  --bg3:    #e4e7ed;
  --bg4:    #d1d6e0;

  /* Borders */
  --line:   rgba(0,0,0,0.07);
  --line2:  rgba(0,0,0,0.13);

  /* Text */
  --text:   #1a1f2e;
  --muted:  #6b7280;
  --muted2: #9ca3af;

  /* Brand palette (fixed - not user-overridable) */
  --accent:     #17726d;
  --accent-btn: #125f5a;
  --accent-rgb: 23,114,109;
  --gold:       #cdaa36;
  --gold-btn:   #b8962e;
  --gold-rgb:   205,170,54;

  /* Semantic */
  --warn:   #d97706;
  --danger: #dc2626;
  --ok:     #16a34a;

  /* Radii */
  --r:  10px;
  --rs: 6px;

  /* Typography */
  --font: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}

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

/* ── SCROLLBARS ──────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 2px; }

/* ── UTILITIES ───────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── INLINE SVG ICONS ────────────────────────── */
svg.ico { vertical-align: -2px; flex-shrink: 0; display: inline-block; }
.search-icon svg.ico { vertical-align: -1px; opacity: .6; }
.empty-ico svg.ico { width: 36px; height: 36px; display: block; margin: auto; opacity: .35; }
.dz-icon svg.ico { width: 26px; height: 26px; display: block; margin: auto; }
.preview-empty-icon svg.ico { width: 26px; height: 26px; display: block; opacity: .3; }
