/* ═══════════════════════════════════════════════════════════════════════════
   FileVault · app.css · v2026.2.0
   Mobile-first dark theme
═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Sora:wght@300;400;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --fv-bg:        #0d0f14;
  --fv-surface:   #161920;
  --fv-card:      #1e2230;
  --fv-border:    #2a2f42;
  --fv-accent:    #4f8ef7;
  --fv-accent2:   #7c5ef7;
  --fv-success:   #30d07a;
  --fv-warn:      #f7a04f;
  --fv-danger:    #f75f5f;
  --fv-text:      #e8eaf2;
  --fv-muted:     #6b7394;
  --fv-font:      'Sora', sans-serif;
  --fv-mono:      'DM Mono', monospace;
  --fv-radius:    10px;
  --fv-radius-sm: 6px;
  --fv-radius-lg: 14px;
  --fv-shadow:    0 4px 24px rgba(0,0,0,.35);
  --fv-sidebar-w: 220px;
  --fv-topbar-h:  52px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--fv-bg);
  color: var(--fv-text);
  font-family: var(--fv-font);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100dvh;
}
pre, code {
  font-weight: 400;
}

a { color: var(--fv-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }
code, .mono {
  font-family: var(--fv-mono);
  font-size: .85em;
  color: var(--fv-accent);
  word-break: break-all;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
.section-title {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fv-muted);
  margin-bottom: 1rem;
}
.section-title i { margin-right: .4rem; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .6rem 1.25rem;
  border-radius: var(--fv-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--fv-font);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1;
  transition: background .15s, border-color .15s, color .15s, opacity .15s;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:active { opacity: .85; }
.btn-primary { background: var(--fv-accent);  color: #fff; border-color: var(--fv-accent); }
.btn-primary:hover  { background: #6aa3ff; border-color: #6aa3ff; color: #fff; }
.btn-success { background: var(--fv-success); color: #0d1a10; border-color: var(--fv-success); }
.btn-success:hover  { background: #4ae090; }
.btn-danger  { background: var(--fv-danger);  color: #fff; border-color: var(--fv-danger); }
.btn-outline { background: transparent; border-color: var(--fv-border); color: var(--fv-text); }
.btn-outline:hover  { border-color: var(--fv-accent); color: var(--fv-accent); }
.btn-ghost   { background: transparent; border-color: transparent; color: var(--fv-muted); }
.btn-ghost:hover    { color: var(--fv-text); }
.btn-sm      { padding: .36rem .8rem; font-size: .78rem; }
.btn-xs      { padding: .24rem .6rem;  font-size: .72rem; }
.btn-icon    { padding: .4rem .5rem; aspect-ratio: 1; }
.btn-block   { width: 100%; padding-block: .78rem; }
/* Touch-friendly minimum tap size */
@media (pointer: coarse) {
  .btn { min-height: 44px; min-width: 44px; }
  .btn-sm { min-height: 36px; }
  .btn-xs { min-height: 32px; }
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: .78rem;
  color: var(--fv-muted);
  margin-bottom: .35rem;
}
.form-control {
  width: 100%;
  background: var(--fv-bg);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-sm);
  color: var(--fv-text);
  font-family: var(--fv-font);
  font-size: .9rem;
  padding: .62rem 1rem;
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus          { border-color: var(--fv-accent); }
.form-control--mono          { font-family: var(--fv-mono); letter-spacing: .05em; }
.form-control--xl            { font-size: 1.6rem; letter-spacing: .28em; text-align: center; text-transform: uppercase; padding: .85rem 1rem; font-family: var(--fv-mono); }
.form-group                  { margin-bottom: 1rem; }
.form-hint                   { font-size: .72rem; color: var(--fv-muted); margin-top: .3rem; }
/* Mobile: stacked by default; two-col on md+ */
.form-row   { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) {
  .form-row   { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--fv-card);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-lg);
  padding: 1.25rem;
}
@media (min-width: 600px) { .card { padding: 1.75rem; } }
.card--sm { padding: .9rem 1.1rem; }
.card + .card { margin-top: 1rem; }

/* ── Badges / Pills ─────────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .65rem;
  font-weight: 700;
  padding: .22rem .62rem;
  border-radius: 99px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.pill-blue   { background: rgba(79,142,247,.15);  color: var(--fv-accent);   border: 1px solid rgba(79,142,247,.3); }
.pill-purple { background: rgba(124,94,247,.15);  color: var(--fv-accent2);  border: 1px solid rgba(124,94,247,.3); }
.pill-green  { background: rgba(48,208,122,.15);  color: var(--fv-success);  border: 1px solid rgba(48,208,122,.3); }
.pill-teal  { background:rgba(20,184,166,.18); color:#5eead4; border-color:rgba(20,184,166,.35); }
.pill-orange { background: rgba(247,160,79,.15);  color: var(--fv-warn);     border: 1px solid rgba(247,160,79,.3); }
.pill-red    { background: rgba(247,95,95,.15);   color: var(--fv-danger);   border: 1px solid rgba(247,95,95,.3); }

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  border-radius: var(--fv-radius-sm);
  padding: .7rem 1rem;
  font-size: .82rem;
  margin-bottom: .85rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.alert i { flex-shrink: 0; margin-top: .1rem; }
.alert-success { background: rgba(48,208,122,.1);  color: var(--fv-success); border: 1px solid rgba(48,208,122,.3); }
.alert-error   { background: rgba(247,95,95,.1);   color: var(--fv-danger);  border: 1px solid rgba(247,95,95,.3); }
.alert-info    { background: rgba(79,142,247,.1);  color: var(--fv-accent);  border: 1px solid rgba(79,142,247,.3); }
.alert-warning { background: rgba(247,160,79,.1);  color: var(--fv-warn);    border: 1px solid rgba(247,160,79,.3); }

/* ── Responsive Table ───────────────────────────────────────────────────── */
/*
 * Mobile: each row becomes a stacked card (.v-table--responsive).
 * Desktop: normal table layout.
 * Actions column: always right-aligned.
 */
.v-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
}
.v-table th {
  text-align: left;
  font-size: .63rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fv-muted);
  padding: .55rem .85rem;
  border-bottom: 1px solid var(--fv-border);
  white-space: nowrap;
}
.v-table td {
  padding: .72rem .85rem;
  border-bottom: 1px solid rgba(42,47,66,.45);
  vertical-align: middle;
}
.v-table tr:last-child td { border-bottom: none; }
.v-table tr:hover td      { background: rgba(255,255,255,.02); }
/* Actions column – right-aligned always */
.v-table td:last-child,
.v-table th:last-child {
  text-align: right;
}
/* On mobile hide table header and display rows as cards */
@media (max-width: 699px) {
  .v-table--responsive thead { display: none; }
  .v-table--responsive, .v-table--responsive tbody,
  .v-table--responsive tr, .v-table--responsive td { display: block; width: 100%; }
  .v-table--responsive tr {
    border: 1px solid var(--fv-border);
    border-radius: var(--fv-radius-sm);
    margin-bottom: .6rem;
    padding: .6rem .85rem;
    background: var(--fv-bg);
  }
  .v-table--responsive td {
    border: none;
    padding: .25rem 0;
    text-align: left !important;
  }
  .v-table--responsive td::before {
    content: attr(data-label) ": ";
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--fv-muted);
    margin-right: .3rem;
  }
  .v-table--responsive td[data-label=""] { margin-top: .5rem; }
  .v-table--responsive td:last-child {
    display: flex;
    justify-content: flex-end;
    gap: .4rem;
    flex-wrap: wrap;
    padding-top: .5rem;
  }
}

/* ── Progress ───────────────────────────────────────────────────────────── */
.progress { background: var(--fv-border); border-radius: 99px; height: 4px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: 99px; background: var(--fv-accent); transition: width .3s; }
.progress-bar--success { background: var(--fv-success); }
.progress-bar--danger  { background: var(--fv-danger); }

/* ── Upload zone ────────────────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--fv-border);
  border-radius: var(--fv-radius-lg);
  padding: 2.5rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--fv-accent);
  background: rgba(79,142,247,.04);
}
.upload-zone .upload-icon { font-size: 2.2rem; color: var(--fv-accent); margin-bottom: .75rem; }
.upload-zone h4 { font-size: .95rem; margin-bottom: .25rem; }
.upload-zone p  { font-size: .78rem; color: var(--fv-muted); }

/* ── Upload item ────────────────────────────────────────────────────────── */
.upload-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem;
  border-radius: var(--fv-radius-sm);
  border: 1px solid var(--fv-border);
  background: var(--fv-bg);
  margin-bottom: .4rem;
  animation: fadeIn .2s ease;
}
.file-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(79,142,247,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--fv-accent);
  font-size: .9rem;
  flex-shrink: 0;
}
.file-icon--danger { background: rgba(247,95,95,.12); color: var(--fv-danger); }
.file-name { font-size: .86rem; font-weight: 600; word-break: break-all; }
.file-meta { font-size: .7rem; color: var(--fv-muted); margin-top: .1rem; }

/* ── Stat grid ──────────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--fv-card);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius);
  padding: 1rem 1.25rem;
}
.stat-card .val { font-size: 1.7rem; font-weight: 700; line-height: 1; margin-bottom: .2rem; }
.stat-card .lbl { font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fv-muted); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .3rem; font-size: .8rem; color: var(--fv-muted); }
.breadcrumb a      { color: var(--fv-muted); }
.breadcrumb a:hover { color: var(--fv-accent); text-decoration: none; }
.breadcrumb .sep   { color: var(--fv-border); }
.breadcrumb .current { color: var(--fv-text); }

/* ── Guest layout ───────────────────────────────────────────────────────── */
.guest-topbar {
  background: var(--fv-surface);
  border-bottom: 1px solid var(--fv-border);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.guest-topbar .pills { display: flex; gap: .4rem; flex-wrap: wrap; }

/* ── Code entry (guest landing) ─────────────────────────────────────────── */
.code-entry-wrap {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(ellipse 65% 45% at 50% 35%, rgba(79,142,247,.07) 0%, transparent 70%);
}
.code-entry-card {
  background: var(--fv-card);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-lg);
  padding: 2.25rem 1.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--fv-shadow);
}
@media (min-width: 480px) { .code-entry-card { padding: 2.75rem 2.5rem; } }
.logo-icon {
  width: 60px; height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--fv-accent), var(--fv-accent2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* ── Admin shell ────────────────────────────────────────────────────────── */
.admin-shell {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
}
.admin-topbar {
  background: var(--fv-surface);
  border-bottom: 1px solid var(--fv-border);
  height: var(--fv-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 200;
  flex-shrink: 0;
}
.admin-layout {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.admin-sidebar {
  width: var(--fv-sidebar-w);
  background: #10131a;
  border-right: 1px solid var(--fv-border);
  flex-shrink: 0;
  overflow-y: auto;
  /* Fixed height via parent overflow:hidden – no sticky needed */
  display: none;
}
.admin-body {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
}
/* Mobile nav drawer */
.sidebar-open .admin-sidebar {
  display: block;
  position: fixed;
  top: var(--fv-topbar-h);
  left: 0;
  height: calc(100dvh - var(--fv-topbar-h));
  z-index: 300;
  width: var(--fv-sidebar-w);
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--fv-topbar-h);
  background: rgba(0,0,0,.5);
  z-index: 299;
}
.sidebar-open .sidebar-overlay { display: block; }
/* Show sidebar inline on large screens */
@media (min-width: 900px) {
  .admin-sidebar { display: block; }
  .admin-topbar .menu-toggle { display: none; }
}

/* Sidebar nav */
.snav-group  { padding: .35rem .6rem; }
.snav-label  { font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fv-muted); padding: .55rem .6rem .2rem; }
.snav-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .65rem;
  border-radius: 7px;
  font-size: .82rem; font-weight: 500;
  color: var(--fv-text);
  transition: background .1s, color .1s;
  text-decoration: none !important;
}
.snav-item:hover { background: rgba(255,255,255,.05); color: var(--fv-text); }
.snav-item.active { background: rgba(79,142,247,.14); color: var(--fv-accent); }
.snav-item i { width: 1rem; text-align: center; font-size: .82rem; flex-shrink: 0; }
.snav-divider { border: none; border-top: 1px solid var(--fv-border); margin: .5rem .6rem; }

/* Main content area */
.main-wrap       { padding: 1.25rem; }
.main-wrap--wide { padding: 1.25rem; }
@media (min-width: 600px)  { .main-wrap, .main-wrap--wide { padding: 1.75rem 2rem; } }

/* ── App brand ──────────────────────────────────────────────────────────── */
.app-brand {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1rem; font-weight: 700;
  color: var(--fv-text); text-decoration: none !important;
}
.app-brand i    { color: var(--fv-accent); }
.app-brand .sub { color: var(--fv-muted); font-weight: 300; font-size: .8rem; }

/* ── Sidebar layout (file manager 2-col) ────────────────────────────────── */
.sidebar-layout { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 900px) {
  .sidebar-layout { grid-template-columns: 240px 1fr; }
}
.sidebar {
  background: var(--fv-card);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-lg);
  padding: .85rem 0;
}
.sidebar-section-title { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fv-muted); padding: .4rem .75rem .2rem; }
.tree-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .35rem .55rem;
  border-radius: 6px;
  font-family: var(--fv-mono); font-size: .76rem;
  color: var(--fv-text);
  transition: background .1s;
  text-decoration: none !important;
}
.tree-item:hover  { background: rgba(255,255,255,.04); }
.tree-item.active { background: rgba(79,142,247,.12); color: var(--fv-accent); }
.tree-children { margin-left: 1rem; border-left: 1px solid var(--fv-border); padding-left: .3rem; }

/* ── Log viewer ─────────────────────────────────────────────────────────── */
.log-row { font-family: var(--fv-mono); font-size: .72rem; padding: .35rem .1rem; border-bottom: 1px solid rgba(42,47,66,.3); display: grid; grid-template-columns: auto auto 1fr auto; gap: .5rem; align-items: start; }
.log-row:last-child { border-bottom: none; }
.log-row .ts    { color: var(--fv-muted); white-space: nowrap; }
.log-row .uuid  { color: var(--fv-muted); font-size: .65rem; display: none; }
@media (min-width: 700px) { .log-row .uuid { display: block; } }
.log-lvl       { font-size: .65rem; font-weight: 700; padding: .1rem .35rem; border-radius: 4px; white-space: nowrap; }
.log-INFO      { background: rgba(48,208,122,.1);  color: var(--fv-success); }
.log-WARN      { background: rgba(247,160,79,.1);  color: var(--fv-warn); }
.log-ERROR     { background: rgba(247,95,95,.1);   color: var(--fv-danger); }
.log-DEBUG     { background: rgba(79,142,247,.1);  color: var(--fv-accent); }
.log-msg       { word-break: break-all; color: var(--fv-text); }

/* ── Exchange two-col (stacked on mobile) ───────────────────────────────── */
.exchange-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 750px) { .exchange-grid { grid-template-columns: 1fr 1fr; } }

/* ── Divider ────────────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--fv-border); margin: 1.1rem 0; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.flex         { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.flex-center  { display: flex; align-items: center; }
.flex-end     { display: flex; align-items: center; justify-content: flex-end; }
.flex-wrap    { flex-wrap: wrap; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.mt-1 { margin-top: .4rem; } .mt-2 { margin-top: .85rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .4rem; } .mb-2 { margin-bottom: .85rem; } .mb-3 { margin-bottom: 1.5rem; }
.text-muted  { color: var(--fv-muted); }
.text-sm     { font-size: .82rem; }
.text-xs     { font-size: .72rem; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.opacity-50  { opacity: .5; }
.hidden      { display: none !important; }
.w-full      { width: 100%; }
.no-shrink   { flex-shrink: 0; }

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ── Type card for code form ────────────────────────────────────────────── */
.type-card {
  display: flex; align-items: center; gap: .7rem; cursor: pointer;
  background: var(--fv-bg); border: 1px solid var(--fv-border);
  border-radius: 8px; padding: .65rem .9rem; transition: border-color .15s;
  flex: 1; min-width: 140px;
  -webkit-tap-highlight-color: transparent;
}
.type-card--active { border-color: var(--fv-accent) !important; background: rgba(79,142,247,.07) !important; }

/* ── Code editor wrapper ────────────────────────────────────────────────── */
.editor-wrap { border: 1px solid var(--fv-border); border-radius: var(--fv-radius-sm); overflow: hidden; }
.CodeMirror  { height: calc(100dvh - 200px); font-family: var(--fv-mono); font-size: .82rem; }

/* ── Gast-Nachricht (Quill HTML output) ────────────────────────────────── */
.guest-message-body { line-height:1.6; color:var(--fv-text); }
.guest-message-body p { margin:.25rem 0; }
.guest-message-body strong { font-weight:700; }
.guest-message-body em { font-style:italic; }
.guest-message-body u { text-decoration:underline; }
.guest-message-body ul, .guest-message-body ol { padding-left:1.4rem; margin:.25rem 0; }
.guest-message-body li { margin:.15rem 0; }
.guest-message-body a { color:var(--fv-accent); text-decoration:underline; }
.guest-message-body a:hover { opacity:.8; }


/* Enhanced Markdown prose */
.prose-md { line-height:1.75; font-size:.92rem; color:var(--fv-text); }
.prose-md h1,.prose-md h2,.prose-md h3,.prose-md h4 { font-weight:700; margin:1.2em 0 .5em; color:var(--fv-text); }
.prose-md h1 { font-size:1.5rem; border-bottom:1px solid var(--fv-border); padding-bottom:.4em; margin-top:.5em; }
.prose-md h2 { font-size:1.2rem; border-bottom:1px solid var(--fv-border); padding-bottom:.25em; }
.prose-md h3 { font-size:1.05rem; }
.prose-md h4 { font-size:.95rem; color:var(--fv-muted); }
.prose-md p  { margin:.65em 0; }
.prose-md ul,.prose-md ol { padding-left:1.6em; margin:.5em 0; }
.prose-md li { margin:.3em 0; }
.prose-md li > p { margin:.2em 0; }
.prose-md a  { color:var(--fv-accent); text-decoration:underline; text-underline-offset:3px; }
.prose-md a:hover { opacity:.8; }
.prose-md strong { color:var(--fv-text); font-weight:600; }
.prose-md em { font-style:italic; }
.prose-md hr { border:none; border-top:1px solid var(--fv-border); margin:1.25em 0; }
.prose-md table { border-collapse:collapse; width:100%; margin:.75em 0; font-size:.85rem; }
.prose-md th,.prose-md td { padding:.4rem .65rem; border:1px solid var(--fv-border); text-align:left; }
.prose-md th { background:rgba(255,255,255,.04); font-weight:600; }
.prose-md tr:nth-child(even) { background:rgba(255,255,255,.02); }
.prose-md code { background:rgba(255,255,255,.08); padding:.15em .4em; border-radius:4px; font-size:.83em; font-family:monospace; color:var(--fv-accent); }
.prose-md pre  { background:rgba(0,0,0,.25); border:1px solid var(--fv-border); padding:.85rem 1rem; border-radius:var(--fv-radius); overflow-x:auto; margin:.75em 0; }
.prose-md pre code { background:none; padding:0; color:var(--fv-text); font-size:.83rem; }
.prose-md blockquote { border-left:3px solid var(--fv-accent); padding:.25rem .75rem; color:var(--fv-muted); margin:.75em 0; background:rgba(79,142,247,.04); border-radius:0 var(--fv-radius-sm) var(--fv-radius-sm) 0; }
.prose-md img { max-width:100%; border-radius:var(--fv-radius); margin:.5em 0; }
