/* ============================================================
   PanelX — panel tasarim sistemi
   Kaynak: docs/03-UX-UI-TASARIM.md (dogrulanmis palet, form kurallari)
   Kod Ingilizce, arayuz metinleri locales/tr.json'dan gelir.
   ============================================================ */

/* ---------- design tokens ---------- */
:root {
  /* dark theme is default (doc 03 header) */
  --bg-page: #0d0d0d;
  --bg-surface: #1a1a19;
  --bg-raised: #222220;
  --text-1: #ffffff;
  --text-2: #c3c2b7;
  --text-faint: #898781;
  --grid-line: #2c2c2a;
  --baseline: #383835;

  --cat-1: #3987e5;
  --cat-2: #d95926;
  --cat-3: #199e70;
  --cat-4: #c98500;
  --cat-5: #d55181;
  --cat-6: #008300;
  --cat-7: #9085e9;
  --cat-8: #e66767;

  --status-ok: #0ca30c;
  --status-warn: #fab219;
  --status-severe: #ec835a;
  --status-crit: #d03b3b;

  /* sequential ramp base (blue) — alpha steps applied in code */
  --seq-base: 57, 135, 229;        /* rgb of --cat-1 dark */
  --div-pos: #3987e5;              /* diverging: faucet / positive */
  --div-neg: #e66767;              /* diverging: sink / negative  */
  --div-neutral: #898781;

  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 8px;
  --radius-sm: 5px;
  --sidebar-w: 240px;
  --topbar-h: 52px;

  --env-stripe: transparent;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg-page: #f9f9f7;
  --bg-surface: #fcfcfb;
  --bg-raised: #f1f0ec;
  --text-1: #0b0b0b;
  --text-2: #52514e;
  --text-faint: #898781;
  --grid-line: #e1e0d9;
  --baseline: #c3c2b7;

  --cat-1: #2a78d6;
  --cat-2: #eb6834;
  --cat-3: #1baf7a;
  --cat-4: #eda100;
  --cat-5: #e87ba4;
  --cat-6: #008300;
  --cat-7: #4a3aa7;
  --cat-8: #e34948;

  --seq-base: 42, 120, 214;
  --div-pos: #2a78d6;
  --div-neg: #e34948;
  color-scheme: light;
}

/* ---------- reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-1);
  background: var(--bg-page);
  overflow: hidden;
}
button, select, input { font-family: inherit; font-size: inherit; color: inherit; }
a { color: var(--cat-1); text-decoration: none; }
a:hover { text-decoration: underline; }

/* non-prod environment: whole page framed with a colored stripe (doc 03 §2.2) */
body.env-dev { box-shadow: inset 0 0 0 4px var(--status-warn); }
body.env-staging { box-shadow: inset 0 0 0 4px var(--cat-7); }
.env-banner {
  display: none;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: #0b0b0b;
  background: var(--status-warn);
}
body.env-dev .env-banner, body.env-staging .env-banner { display: block; }
body.env-staging .env-banner { background: var(--cat-7); color: #fff; }

/* prototype banner */
.proto-banner {
  padding: 3px 16px;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  background: var(--bg-raised);
  border-bottom: 1px solid var(--grid-line);
}

/* ---------- layout ---------- */
.shell { display: flex; flex-direction: column; height: 100vh; }
.frame { display: flex; flex: 1; min-height: 0; }

/* ---------- topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--topbar-h);
  padding: 0 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--grid-line);
  flex-shrink: 0;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; cursor: pointer; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cat-1); }
.topbar select {
  background: var(--bg-raised);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  font-size: 13px;
  cursor: pointer;
}
.topbar select:focus, button:focus-visible, input:focus, [tabindex]:focus-visible {
  outline: 2px solid var(--cat-1);
  outline-offset: 1px;
}
.topbar .spacer { flex: 1; }

.live-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-2);
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg-raised); cursor: pointer; border: 1px solid var(--grid-line);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--status-ok); }
.live-pill.on .live-dot { animation: pulse 1.6s ease-in-out infinite; }
.live-pill.off .live-dot { background: var(--text-faint); animation: none; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  .live-pill.on .live-dot { animation: none; }
  * { transition: none !important; }
}
.icon-btn {
  background: var(--bg-raised);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-2);
}
.icon-btn:hover { color: var(--text-1); }

/* ---------- sidebar ---------- */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  overflow-y: auto;
  padding: 12px 0 24px;
  background: var(--bg-surface);
  border-right: 1px solid var(--grid-line);
}
.nav-group { margin: 14px 16px 4px; font-size: 11px; letter-spacing: 0.08em; color: var(--text-faint); }
.nav-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 7px 16px 7px 24px;
  border: 0;
  background: none;
  color: var(--text-2);
  font-size: 13.5px;
  cursor: pointer;
  border-left: 2px solid transparent;
}
.nav-item:hover { color: var(--text-1); background: var(--bg-raised); }
.nav-item.active { color: var(--text-1); font-weight: 600; border-left-color: var(--cat-1); background: var(--bg-raised); }
.nav-sep { margin: 12px 16px; border-top: 1px solid var(--grid-line); }

/* ---------- main ---------- */
.main { flex: 1; min-width: 0; overflow-y: auto; padding: 24px; }
.main.refreshing .card, .main.refreshing .page-head { opacity: 0.55; transition: opacity 0.15s; }

.page-head { margin-bottom: 20px; }
.page-title { font-size: 24px; font-weight: 600; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.page-question { margin-top: 3px; color: var(--text-2); font-style: italic; }
.page-note { margin-top: 4px; font-size: 12px; color: var(--text-faint); }

.filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; font-size: 13px; color: var(--text-2); }
.filter-row select, .filter-row input {
  background: var(--bg-surface);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  font-size: 13px;
}

/* ---------- cards ---------- */
.grid { display: grid; gap: 16px; }
.kpi-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-bottom: 16px; }
.two-col { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 1100px) { .two-col { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-surface);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
  margin-bottom: 16px;
}
.card:last-child { margin-bottom: 0; }
.card-head { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.card-title { font-size: 18px; font-weight: 600; }
.card-sub { font-size: 12.5px; color: var(--text-2); margin-bottom: 14px; }
.card-head .tools { margin-left: auto; display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.card-foot { margin-top: 10px; font-size: 11px; color: var(--text-faint); }

/* stat tile */
.stat-tile { background: var(--bg-surface); border: 1px solid var(--grid-line); border-radius: var(--radius); padding: 16px 20px; min-width: 0; }
.stat-label { font-size: 12.5px; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.stat-value { font-size: 32px; font-weight: 600; margin-top: 2px; line-height: 1.1; word-break: break-word; }
.stat-value.hero { font-size: 48px; }
.stat-value.dim { color: var(--text-faint); }
.stat-delta { font-size: 12px; margin-top: 4px; color: var(--text-2); }
.stat-delta .dir-good { color: var(--status-ok); font-weight: 600; }
.stat-delta .dir-bad { color: var(--status-crit); font-weight: 600; }
.stat-delta .dir-flat { color: var(--text-faint); font-weight: 600; }
.stat-spark { margin-top: 8px; }
.stat-spark svg { display: block; width: 100%; height: 30px; }

/* badges */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 600;
  padding: 1px 7px; border-radius: 999px;
  vertical-align: middle; white-space: nowrap;
}
.badge-lowdata { background: rgba(250, 178, 25, 0.16); color: var(--status-warn); border: 1px solid rgba(250, 178, 25, 0.4); }
.badge-provisional { color: var(--text-faint); border: 1px solid var(--baseline);
  background: repeating-linear-gradient(45deg, transparent 0 3px, rgba(137,135,129,0.14) 3px 6px); }
.badge-corrected { background: rgba(57,135,229,0.14); color: var(--cat-1); border: 1px solid rgba(57,135,229,0.4); }
.badge-stale { background: rgba(137,135,129,0.16); color: var(--text-faint); border: 1px solid var(--baseline); }
.badge-test { background: rgba(208,59,59,0.14); color: var(--status-crit); border: 1px solid rgba(208,59,59,0.4); }
.badge-maint { background: rgba(137,135,129,0.2); color: var(--text-2); border: 1px solid var(--baseline); }
.badge-flag { background: rgba(236,131,90,0.15); color: var(--status-severe); border: 1px solid rgba(236,131,90,0.4); }

/* status chip: color NEVER alone — icon + label (doc 03 §3.4) */
.status-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; }
.status-chip .s-ic { font-size: 12px; }
.status-ok { color: var(--status-ok); }
.status-warn { color: var(--status-warn); }
.status-severe { color: var(--status-severe); }
.status-crit { color: var(--status-crit); }
.status-muted { color: var(--text-faint); }

/* info tip (i) */
.info-tip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid var(--text-faint);
  color: var(--text-faint);
  font-size: 10px; font-style: normal; font-weight: 600;
  cursor: help; flex-shrink: 0; user-select: none;
}
.info-tip:hover, .info-tip:focus { border-color: var(--cat-1); color: var(--cat-1); }

.tooltip-pop {
  position: fixed; z-index: 1000;
  max-width: 340px;
  background: var(--bg-raised);
  border: 1px solid var(--baseline);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  pointer-events: none;
}
.tooltip-pop .tt-title { font-weight: 600; color: var(--text-1); font-size: 12.5px; margin-bottom: 3px; }
.tooltip-pop .tt-row { margin-top: 5px; }
.tooltip-pop .tt-key { color: var(--text-faint); font-size: 11px; }
.tooltip-pop .tt-warn { color: var(--status-warn); margin-top: 6px; }

/* chart / table toggle */
.seg {
  display: inline-flex; border: 1px solid var(--grid-line); border-radius: var(--radius-sm); overflow: hidden;
}
.seg button {
  border: 0; background: none; padding: 3px 10px; font-size: 11.5px; cursor: pointer; color: var(--text-faint);
}
.seg button.active { background: var(--bg-raised); color: var(--text-1); font-weight: 600; }
.btn-export { border: 1px solid var(--grid-line); border-radius: var(--radius-sm); background: none; color: var(--text-faint); font-size: 11.5px; padding: 3px 10px; cursor: pointer; }
.btn-export:hover { color: var(--text-1); }

.chart-box { position: relative; }
.chart-box canvas { max-width: 100%; }

/* legend */
.legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; font-size: 12px; color: var(--text-2); }
.legend .lg-item { display: inline-flex; align-items: center; gap: 6px; }
.legend .lg-line { width: 14px; height: 0; border-top: 2px solid; }
.legend .lg-rect { width: 10px; height: 10px; border-radius: 2px; }
.legend .lg-hatch { width: 12px; height: 10px; border: 1px solid var(--baseline);
  background: repeating-linear-gradient(45deg, transparent 0 2px, rgba(137,135,129,0.35) 2px 4px); }

/* ---------- tables ---------- */
.tbl-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th {
  text-align: left; font-size: 11.5px; font-weight: 600; color: var(--text-faint);
  padding: 6px 10px; border-bottom: 1px solid var(--baseline); white-space: nowrap;
}
.tbl td { padding: 7px 10px; border-bottom: 1px solid var(--grid-line); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td.num, .tbl th.num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl tr.clickable { cursor: pointer; }
.tbl tr.clickable:hover td { background: var(--bg-raised); }
.tbl td .raw-key { display: block; font-size: 11px; color: var(--text-faint); }
.tbl td.dim, .tbl tr.dim td { color: var(--text-faint); }
.tbl tr.provisional-row td { background: repeating-linear-gradient(45deg, transparent 0 6px, rgba(137,135,129,0.05) 6px 12px); }

/* inline bar (satir ici cubuk) */
.ibar { display: flex; align-items: center; gap: 8px; min-width: 140px; }
.ibar .ibar-track { flex: 1; height: 12px; background: var(--bg-raised); border-radius: 2px; overflow: hidden; }
.ibar .ibar-fill { height: 100%; border-radius: 2px; background: rgba(var(--seq-base), 0.85); }
.ibar .ibar-val { font-variant-numeric: tabular-nums; font-size: 12.5px; white-space: nowrap; }

/* stacked horizontal bar */
.hstack { display: flex; height: 26px; border-radius: 4px; overflow: hidden; gap: 2px; }
.hstack .hs-seg { min-width: 2px; }
.hstack-lg { height: 34px; }

/* ---------- heatmap (kusak matrisi) ---------- */
.heatmap { overflow-x: auto; }
.hm-grid { border-collapse: collapse; font-size: 12px; }
.hm-grid th { font-size: 11px; font-weight: 600; color: var(--text-faint); padding: 4px 6px; text-align: center; }
.hm-grid td { padding: 0; }
.hm-grid .hm-rowhead { text-align: left; padding: 0 10px 0 2px; white-space: nowrap; color: var(--text-2); }
.hm-grid .hm-rowhead .hm-size { color: var(--text-faint); font-size: 11px; margin-left: 6px; }
.hm-cell {
  min-width: 46px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; font-variant-numeric: tabular-nums;
  border: 2px solid var(--bg-surface);
  border-radius: 3px; cursor: default;
}
.hm-cell.empty { color: var(--text-faint); background: none; }
.hm-cell.lowdata { opacity: 0.55; }
.hm-cell.partial { background-image: repeating-linear-gradient(45deg, transparent 0 4px, rgba(137,135,129,0.25) 4px 8px); }

/* ---------- funnel ---------- */
.funnel { display: flex; flex-direction: column; gap: 10px; }
.fn-step { display: grid; grid-template-columns: 200px 1fr 170px; gap: 12px; align-items: center; }
.fn-name { font-size: 13px; color: var(--text-2); text-align: right; }
.fn-name .raw-key { font-size: 11px; color: var(--text-faint); display: block; }
.fn-track { height: 26px; background: var(--bg-raised); border-radius: 3px; overflow: hidden; }
.fn-fill { height: 100%; border-radius: 3px; }
.fn-stats { font-size: 12.5px; font-variant-numeric: tabular-nums; color: var(--text-2); white-space: nowrap; }
.fn-drop { grid-column: 2 / 4; font-size: 11.5px; color: var(--status-severe); padding-left: 4px; }

/* ---------- status list (entegrasyon) ---------- */
.check-list { display: flex; flex-direction: column; }
.check-row { display: flex; align-items: baseline; gap: 10px; padding: 8px 4px; border-bottom: 1px solid var(--grid-line); }
.check-row:last-child { border-bottom: 0; }
.check-row .check-name { flex: 0 0 300px; font-size: 13px; }
.check-row .check-detail { color: var(--text-faint); font-size: 12px; flex: 1; min-width: 0; }

/* ---------- timeline (oyuncu gezgini) ---------- */
.timeline { border-left: 2px solid var(--baseline); margin-left: 8px; padding-left: 18px; }
.tl-day { margin: 18px 0 8px; font-size: 12px; font-weight: 600; color: var(--text-faint); letter-spacing: 0.04em; }
.tl-item { position: relative; margin-bottom: 8px; font-size: 13px; }
.tl-item::before {
  content: ""; position: absolute; left: -23.5px; top: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--baseline);
}
.tl-item.tl-ok::before { background: var(--status-ok); }
.tl-item.tl-warn::before { background: var(--status-warn); }
.tl-item.tl-crit::before { background: var(--status-crit); }
.tl-item.tl-info::before { background: var(--cat-1); }
.tl-time { color: var(--text-faint); font-size: 11.5px; margin-right: 8px; font-variant-numeric: tabular-nums; }
.tl-detail { color: var(--text-faint); font-size: 12px; margin-left: 8px; }

/* ---------- live stream ---------- */
.stream { max-height: 380px; overflow-y: auto; font-size: 12.5px; }
.stream-row { display: flex; gap: 10px; padding: 5px 4px; border-bottom: 1px solid var(--grid-line); align-items: baseline; }
.stream-row .st-time { color: var(--text-faint); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.stream-row .st-type { flex: 0 0 92px; font-weight: 600; }
.stream-row .st-desc { color: var(--text-2); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stream-row .st-dev { color: var(--text-faint); font-size: 11px; flex-shrink: 0; }

/* alert banner */
.alert-banner {
  display: flex; gap: 8px; align-items: center;
  border: 1px solid rgba(250,178,25,0.5);
  background: rgba(250,178,25,0.09);
  color: var(--status-warn);
  border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: 13px; margin-bottom: 16px;
}

/* ---------- empty / error states ---------- */
.state-box { text-align: center; padding: 44px 20px; color: var(--text-2); }
.state-box .st-title { font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.state-box .st-desc { font-size: 13px; max-width: 460px; margin: 0 auto 12px; }
.state-box.error-box { border: 1px solid rgba(208,59,59,0.4); border-radius: var(--radius); background: rgba(208,59,59,0.05); }
.state-box button { margin-top: 4px; }
.btn {
  background: var(--bg-raised); border: 1px solid var(--baseline); color: var(--text-1);
  border-radius: var(--radius-sm); padding: 6px 14px; font-size: 13px; cursor: pointer;
}
.btn:hover { border-color: var(--text-faint); }
.btn-danger { border-color: rgba(208,59,59,0.5); color: var(--status-crit); }

/* ---------- quadrant labels (dagilim) ---------- */
.quad-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 10px; font-size: 11.5px; color: var(--text-faint); }
.quad-notes span::before { content: "· "; }

/* small multiples */
.small-multiples { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.sm-panel { border: 1px solid var(--grid-line); border-radius: var(--radius-sm); padding: 12px; }
.sm-title { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-2); }

/* ---------- glossary ---------- */
.gl-entry { padding: 12px 4px; border-bottom: 1px solid var(--grid-line); }
.gl-entry:last-child { border-bottom: 0; }
.gl-term { font-weight: 600; font-size: 14px; }
.gl-sector { color: var(--text-faint); font-size: 12px; margin-left: 8px; }
.gl-def { color: var(--text-2); font-size: 13px; margin-top: 3px; }
.gl-meta { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.gl-meta b { color: var(--text-2); font-weight: 600; }

/* ---------- settings ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--grid-line); margin-bottom: 16px; flex-wrap: wrap; }
.tabs button {
  border: 0; background: none; padding: 8px 14px; font-size: 13px; color: var(--text-2);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button.active { color: var(--text-1); font-weight: 600; border-bottom-color: var(--cat-1); }
.form-grid { display: grid; grid-template-columns: 260px 1fr; gap: 12px 16px; align-items: center; max-width: 640px; }
.form-grid label { font-size: 13px; color: var(--text-2); }
.form-grid input, .form-grid select {
  background: var(--bg-raised); border: 1px solid var(--grid-line); border-radius: var(--radius-sm);
  padding: 6px 9px; font-size: 13px; max-width: 280px;
}
.key-code { font-family: ui-monospace, Consolas, monospace; font-size: 12px; color: var(--text-2); }

/* ---------- misc ---------- */
.muted { color: var(--text-faint); }
.mono { font-family: ui-monospace, Consolas, monospace; font-size: 12px; }
.nowrap { white-space: nowrap; }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mb8 { margin-bottom: 8px; }
.spark-svg polyline { fill: none; stroke-width: 1.5; }
.hint-note { font-size: 12px; color: var(--text-faint); margin-top: 6px; }

/* ---------- giris ekrani ---------- */
.login-screen {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg-page);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
}
.login-card {
  width: 340px; max-width: calc(100vw - 32px);
  background: var(--bg-surface); border: 1px solid var(--grid-line);
  border-radius: var(--radius); padding: 28px;
}
.login-brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.login-sub { color: var(--text-2); font-size: 13px; margin-bottom: 20px; }
.login-card label { display: block; font-size: 12.5px; color: var(--text-2); margin: 12px 0 4px; }
.login-card input {
  width: 100%; background: var(--bg-raised); border: 1px solid var(--grid-line);
  border-radius: var(--radius-sm); padding: 8px 10px; font-size: 14px;
}
.login-submit { width: 100%; margin-top: 20px; padding: 9px; font-size: 14px; font-weight: 600; }
.login-note { font-size: 11.5px; color: var(--text-faint); max-width: 380px; text-align: center; line-height: 1.5; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--baseline); border-radius: 5px; }
::-webkit-scrollbar-track { background: transparent; }

/* gercek mod giris hatasi */
.login-error { color: var(--crit, #e5484d); font-size: 13px; min-height: 18px; margin: 4px 0; }

