/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #eff6ff;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-focus: #3b82f6;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --badge-bg: #dbeafe;
  --badge-color: #1d4ed8;
  --header-label-color: #3b82f6;
  --payload-label-color: #8b5cf6;
  --sig-label-color: #ec4899;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 2px 8px rgba(0,0,0,.1);
  --radius: 10px;
  --radius-sm: 6px;
  --font-mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Mono', monospace;
}

[data-theme="dark"] {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface-alt: #162032;
  --border: #334155;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --primary-light: #1e3a5f;
  --badge-bg: #1e3a5f;
  --badge-color: #93c5fd;
  --success-bg: #052e16;
  --warning-bg: #1c0d00;
  --error-bg: #1f0a0a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  transition: background .2s, color .2s;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 20px; }

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  font-family: inherit;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.nav-btn.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}

.theme-toggle:hover { background: var(--surface-alt); }

/* ============================================================
   AD STRIP
   ============================================================ */
.ad-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ad-strip.ad-inline {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 16px 0;
  background: var(--surface-alt);
}

.ad-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ad-placeholder {
  background: var(--surface-alt);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
}

.ad-leaderboard { width: 100%; max-width: 728px; height: 90px; }
.ad-rectangle { width: 300px; height: 250px; }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.main-content { min-width: 0; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-ad {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.sidebar-info h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sidebar-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   TAB SECTIONS
   ============================================================ */
.tab-section { display: none; }
.tab-section.active { display: block; }

.section-intro {
  margin-bottom: 20px;
}

.section-intro h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================================================
   TOOL SELECTOR
   ============================================================ */
.tool-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tool-sel-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}

.tool-sel-btn:hover {
  background: var(--surface-alt);
  color: var(--text);
  border-color: var(--primary);
}

.tool-sel-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   TOOL CARDS
   ============================================================ */
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}

.tool-card:hover { box-shadow: var(--shadow); }

.tool-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}

.tool-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.tool-title h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.tool-badge {
  background: var(--badge-bg);
  color: var(--badge-color);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .3px;
  font-family: var(--font-mono);
}

.tool-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.tool-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   IO ROWS
   ============================================================ */
.io-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.io-row label,
.io-label-row {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-input,
.tool-output {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  background: var(--surface);
  color: var(--text);
  resize: vertical;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

.tool-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.tool-output {
  background: var(--surface-alt);
  color: var(--text);
}

.tool-output.error {
  color: var(--error);
  border-color: var(--error);
  background: var(--error-bg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tool-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
  white-space: nowrap;
}

.btn:active { transform: scale(.97); }

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

.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost {
  background: none;
  border-color: var(--border);
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.btn-icon {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  font-size: 12px;
  cursor: pointer;
  color: var(--text-muted);
  font-family: inherit;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

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

/* ============================================================
   HASH RESULTS
   ============================================================ */
.hash-results {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hash-row {
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.hash-row:last-child { border-bottom: none; }
.hash-row:nth-child(even) { background: var(--surface-alt); }

.hash-algo {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .3px;
  flex-shrink: 0;
}

.hash-value {
  font-size: 12px;
  color: var(--text);
  word-break: break-all;
  min-height: 18px;
}

.hash-value:empty::before {
  content: '—';
  color: var(--text-light);
}

.mono { font-family: var(--font-mono); }

.hash-copy-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  color: var(--text-muted);
  transition: background .15s, color .15s;
}

.hash-copy-btn:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ============================================================
   JWT
   ============================================================ */
.jwt-input { font-size: 12px; }

.jwt-status {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .2px;
}

.jwt-status.valid { background: var(--success-bg); color: var(--success); }
.jwt-status.expired { background: var(--error-bg); color: var(--error); }
.jwt-status.not-valid { background: var(--warning-bg); color: var(--warning); }
.jwt-status.no-exp { background: var(--surface-alt); color: var(--text-muted); }

.jwt-time-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.time-info-item {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.jwt-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jwt-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.jwt-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.jwt-part-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.header-label { color: var(--header-label-color); }
.payload-label { color: var(--payload-label-color); }
.sig-label { color: var(--sig-label-color); }

.jwt-code {
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0;
}

.jwt-sig { color: var(--sig-label-color); word-break: break-all; }

.jwt-sig-note {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-light);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.alert-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #fca5a5;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #86efac;
}

.jwt-error-tip {
  margin-top: 6px;
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text);
  color: var(--surface);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-nav a:hover { color: var(--primary); }

/* ============================================================
   REGEX TESTER
   ============================================================ */
.regex-pattern-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}

.regex-pattern-row:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.regex-delimiter {
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text-muted);
  background: var(--surface-alt);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
}

.regex-delimiter:last-of-type {
  border-right: none;
  border-left: 1px solid var(--border);
}

.regex-pattern-input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-width: 0;
}

.regex-pattern-input:focus {
  box-shadow: none !important;
}

.regex-flags-display {
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--surface-alt);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 32px;
}

.regex-flags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 2px 0;
}

.regex-flag-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  user-select: none;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.regex-flag-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.regex-flag-label > span:nth-child(2) {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}

.regex-flag-desc {
  color: var(--text-muted);
  font-size: 12px;
}

.regex-highlight-area {
  width: 100%;
  min-height: 80px;
  max-height: 240px;
  overflow-y: auto;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-all;
}

.regex-highlight-area mark {
  background: #fef08a;
  color: #713f12;
  border-radius: 2px;
  padding: 0 1px;
}

[data-theme="dark"] .regex-highlight-area mark {
  background: #713f12;
  color: #fef9c3;
}

.regex-match-count {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
}

.regex-match-count.has-matches { color: var(--success); }
.regex-match-count.no-matches  { color: var(--text-light); }

.regex-match-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.regex-match-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  background: var(--surface);
  align-items: start;
}

.regex-match-item:last-child { border-bottom: none; }
.regex-match-item:nth-child(even) { background: var(--surface-alt); }

.regex-match-index {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 11px;
  padding-top: 2px;
}

.regex-match-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.regex-match-value {
  font-family: var(--font-mono);
  background: #fef08a;
  color: #713f12;
  border-radius: 2px;
  padding: 1px 5px;
  display: inline-block;
  word-break: break-all;
}

[data-theme="dark"] .regex-match-value {
  background: #713f12;
  color: #fef9c3;
}

.regex-match-pos   { font-size: 11px; color: var(--text-muted); }

.regex-match-groups {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.regex-cap-label { color: var(--primary); font-weight: 700; }

/* ============================================================
   UUID GENERATOR
   ============================================================ */
.uuid-count-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.uuid-count-select {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.875rem;
  cursor: pointer;
}

.uuid-length-input {
  width: 64px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.875rem;
  font-family: inherit;
  text-align: center;
}

.uuid-length-input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* ============================================================
   TIMESTAMP CONVERTER
   ============================================================ */
.ts-section { margin-bottom: 4px; }

.ts-section-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.ts-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.ts-epoch-input { flex: 1; }

.ts-date-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color .15s;
  color-scheme: light dark;
}

.ts-date-input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.ts-results {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 4px;
}

.ts-row {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  align-items: center;
  padding: 9px 12px;
  gap: 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ts-row:last-child { border-bottom: none; }
.ts-row:nth-child(even) { background: var(--surface-alt); }

.ts-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .3px;
  flex-shrink: 0;
}

.ts-value {
  font-size: 12px;
  color: var(--text);
  word-break: break-all;
  min-height: 18px;
}

.ts-value:empty::before { content: '—'; color: var(--text-light); }

.ts-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* ============================================================
   CASE CONVERTER
   ============================================================ */
.case-results {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 4px;
}

.case-row {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  align-items: center;
  padding: 9px 12px;
  gap: 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.case-row:last-child { border-bottom: none; }
.case-row:nth-child(even) { background: var(--surface-alt); }

.case-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .3px;
  flex-shrink: 0;
}

.case-value {
  font-size: 12px;
  color: var(--text);
  word-break: break-all;
  min-height: 18px;
}

.case-value:empty::before { content: '—'; color: var(--text-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-ad {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ad-rectangle {
    width: 100%;
    height: 100px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 12px;
    gap: 10px;
  }

  .logo-text { display: none; }

  .nav-btn {
    padding: 8px 10px;
    font-size: 13px;
  }

  .page-layout { padding: 16px 12px; }

  .tool-header { padding: 12px 14px 10px; }
  .tool-body { padding: 12px 14px; }

  .hash-row, .ts-row, .case-row {
    grid-template-columns: 70px 1fr 28px;
    padding: 8px 10px;
  }

  .btn { padding: 8px 12px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .jwt-panels { gap: 8px; }
}
