/* ==========================================================================
   IA Aktions-Panel – Design-System im Apple-Stil
   ========================================================================== */

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #aeaeb2;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --green: #34c759;
  --orange: #ff9f0a;
  --red: #ff3b30;
  --sep: rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-s: 10px;
  --shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 24px rgba(0,0,0,.05);
  --shadow-s: 0 1px 3px rgba(0,0,0,.07);
  --sidebar-w: 256px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 4px; }
h2 { font-size: 19px; font-weight: 650; letter-spacing: -0.01em; margin: 0 0 12px; }
h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; }

/* ---------------------------------------------------------------- Layout */

.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 14px;
  min-height: 60px; padding: 0 22px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--sep);
}

.main {
  padding: 28px 32px 64px;
  width: 99%;
  max-width: 2500px;
  margin: 0 auto;
}

/* Marke / Logo links */
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-logo { height: 34px; width: auto; display: block; border-radius: 6px; }
@media (min-width: 861px) { .brand-logo { height: 51px; } }
.brand-name {
  font-weight: 600; font-size: 14px; color: var(--text);
  padding-left: 13px; border-left: 1px solid var(--sep);
  max-width: 230px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Navigation horizontal (kein overflow: würde die nach unten ausklappenden Menüs abschneiden) */
.nav { display: flex; align-items: center; gap: 3px; flex: 1 1 auto; min-width: 0; flex-wrap: wrap; }
.nav-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 980px;
  color: var(--text); font-weight: 500; font-size: 13.5px;
  white-space: nowrap; cursor: pointer;
  border: none; background: transparent; font-family: inherit;
  transition: background 0.15s ease;
}
.nav-item:hover { background: rgba(0, 0, 0, 0.06); text-decoration: none; }
.nav-item.active { background: var(--accent); color: #fff; }
.nav-item svg { width: 17px; height: 17px; fill: currentColor; opacity: 0.9; flex: 0 0 auto; }

/* Aufklappbare Gruppen (natives <details>/<summary>) */
.nav-dd { position: relative; flex: 0 0 auto; }
summary.nav-dd-toggle { list-style: none; user-select: none; }
summary.nav-dd-toggle::-webkit-details-marker { display: none; }
summary.nav-dd-toggle::marker { content: ''; }
.nav-dd-toggle .nav-chev { width: 13px; height: 13px; opacity: 0.6; transition: transform 0.18s ease; }
.nav-dd[open] > .nav-dd-toggle { background: rgba(0, 0, 0, 0.06); }
.nav-dd[open] > .nav-dd-toggle .nav-chev { transform: rotate(180deg); }
.nav-dd.active > .nav-dd-toggle { background: var(--accent); color: #fff; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 224px; padding: 6px;
  background: var(--surface); border-radius: 14px;
  box-shadow: var(--shadow); border: 1px solid var(--sep);
  display: flex; flex-direction: column; gap: 1px; z-index: 60;
}
.nav-dd:not([open]) .nav-dd-menu { display: none; }
/* Das rechteste Dropdown nach rechts öffnen, damit es nicht über den Rand ragt */
.nav-dd:last-of-type .nav-dd-menu { left: auto; right: 0; }
.nav-dd-menu .nav-item { width: 100%; border-radius: var(--radius-s); }

/* Benutzer-Bereich rechts */
.topbar-right { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; margin-left: auto; }
.userchip { display: flex; align-items: center; gap: 9px; padding: 5px 10px 5px 6px; border-radius: 980px; color: var(--text); min-width: 0; }
.userchip:hover { background: rgba(0,0,0,0.06); text-decoration: none; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #6e6e73, #48484a);
  color: #fff; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.userchip-text { min-width: 0; line-height: 1.2; }
.userchip-name { font-size: 12.5px; font-weight: 550; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 170px; }
.userchip-role { font-size: 11px; color: var(--text-2); }
.logout { padding: 8px; border-radius: 50%; color: var(--text-2); display: flex; }
.logout:hover { background: rgba(0,0,0,0.06); color: var(--red); }
.logout svg { width: 18px; height: 18px; fill: currentColor; }

.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.page-head p { margin: 2px 0 0; color: var(--text-2); }
.page-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- Karten */

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.card.flush { padding: 0; overflow: hidden; }

/* Einklappbare Einstellungs-Gruppen (natives <details>) */
details.setting-group { padding: 0; overflow: hidden; }
summary.setting-group-head {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 11px;
  padding: 16px 22px;
}
summary.setting-group-head::-webkit-details-marker { display: none; }
summary.setting-group-head::marker { content: ''; }
.setting-group-head:hover { background: rgba(0, 0, 0, 0.025); }
.setting-group-head h2 { margin: 0; }
.setting-chev { width: 18px; height: 18px; fill: var(--text-2); flex: 0 0 auto; transition: transform 0.18s ease; }
details.setting-group[open] .setting-chev { transform: rotate(180deg); }
.setting-group-count { margin-left: auto; font-size: 11.5px; color: var(--text-2); background: rgba(0,0,0,0.05); border-radius: 980px; padding: 2px 11px; white-space: nowrap; }
.setting-group-body { padding: 6px 22px 22px; border-top: 1px solid var(--sep); }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.card-head h2 { margin: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 900px)  { .grid-2 { grid-template-columns: 1fr; } }

.stat {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-s);
  padding: 18px 20px;
}
.stat .label { font-size: 12.5px; color: var(--text-2); font-weight: 500; }
.stat .value { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.stat .sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ---------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font: inherit; font-size: 13.5px; font-weight: 500;
  padding: 8px 18px; border-radius: 980px;
  border: none; cursor: pointer;
  background: rgba(0, 0, 0, 0.06); color: var(--text);
  transition: background .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn:hover { background: rgba(0, 0, 0, 0.1); text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-danger { background: rgba(255, 59, 48, 0.1); color: var(--red); }
.btn-danger:hover { background: rgba(255, 59, 48, 0.18); }
.btn-sm { padding: 5px 13px; font-size: 12.5px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* Select im grauen Button-Look (z.B. Suchergebnis-Export) */
.btn-select {
  width: auto; appearance: none; -webkit-appearance: none;
  font: inherit; font-size: 13.5px; font-weight: 500;
  padding: 8px 36px 8px 18px;
  border: none; border-radius: 980px;
  background-color: rgba(0, 0, 0, 0.06); color: var(--text);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236e6e73'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer; white-space: nowrap;
  transition: background-color .15s ease;
}
.btn-select:hover { background-color: rgba(0, 0, 0, 0.1); }
.btn-select:focus { outline: none; box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15); }

/* ---------------------------------------------------------------- Formulare */

label { display: block; font-size: 12.5px; font-weight: 550; color: var(--text-2); margin: 0 0 5px; }
.field { margin-bottom: 16px; }
input[type=text], input[type=email], input[type=password], input[type=number],
input[type=date], input[type=time], input[type=datetime-local], select, textarea {
  width: 100%; font: inherit; font-size: 14px;
  padding: 9px 12px;
  border: 1px solid #d2d2d7; border-radius: var(--radius-s);
  background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}
textarea { min-height: 110px; resize: vertical; }
select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236e6e73'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.check { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 400; color: var(--text); cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.help { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ---------------------------------------------------------------- Tabellen */

.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th {
  text-align: left; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-2); padding: 10px 12px; border-bottom: 1px solid var(--sep);
  position: sticky; top: 0; background: var(--surface); z-index: 2;
  white-space: nowrap;
}
.tbl td { padding: 10px 12px; border-bottom: 1px solid var(--sep); vertical-align: middle; }
.tbl tbody tr { transition: background .12s; }
.tbl tbody tr:hover { background: #f5f5f7; }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl select { padding: 5px 28px 5px 9px; font-size: 12.5px; width: auto; }
.tbl input { padding: 5px 9px; font-size: 12.5px; }

/* Inline-Kommentar in der Teilnehmerliste (2-zeilige Textarea + schwebender Speichern-Button) */
td.comment-cell { min-width: 210px; }
.comment-wrap { position: relative; }
.comment-ta {
  display: block; width: 100%; resize: none;
  min-height: 0; /* hebt die globale textarea-Mindesthöhe (110px) auf, damit rows=2 gilt */
  font: inherit; font-size: 12.5px; line-height: 1.35;
  padding: 5px 8px; border: 1px solid #d2d2d7; border-radius: 8px;
  background: #fff; color: var(--text);
}
.comment-ta:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,113,227,.15); }
.comment-actions { position: absolute; top: 100%; left: 0; margin-top: 3px; z-index: 6; line-height: 1; }
.comment-save, .comment-saved { display: none; }
.comment-wrap.editing .comment-save { display: inline-flex; }
.comment-wrap.saved .comment-saved {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--green); color: #1d8a3e;
  font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 980px;
}

/* ---------------------------------------------------------------- Badges & Pills */

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 550;
  padding: 3px 10px; border-radius: 980px;
  background: rgba(0,0,0,0.06); color: var(--text);
  white-space: nowrap;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-green  { background: rgba(52, 199, 89, .13); color: #1d8a3e; }
.badge-orange { background: rgba(255, 159, 10, .15); color: #b06a00; }
.badge-red    { background: rgba(255, 59, 48, .12); color: #c41e14; }
.badge-blue   { background: rgba(0, 113, 227, .12); color: #0058b0; }
.badge-gray   { background: rgba(0, 0, 0, .07); color: var(--text-2); }

.dup-flag {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 8px;
  border-radius: 980px; font-size: 11px; font-weight: 700; color: #fff;
  vertical-align: middle;
}
.dup-reasons { display: block; margin-top: 4px; font-size: 11.5px; color: var(--text-2); line-height: 1.55; }
.dup-reasons a { font-weight: 600; }

/* ---------------------------------------------------------------- Hinweise */

.note {
  border-radius: var(--radius-s);
  padding: 12px 16px; margin-bottom: 16px;
  background: rgba(0, 113, 227, 0.08); color: #0a4f9e;
  font-size: 13.5px;
}
.note-warn  { background: rgba(255, 159, 10, 0.12); color: #8a5400; }
.note-error { background: rgba(255, 59, 48, 0.1);  color: #b3160c; }
.note-ok    { background: rgba(52, 199, 89, 0.12);  color: #19712f; }

/* ---------------------------------------------------------------- Login */

.login-bg {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(1200px 600px at 20% 0%, #e8f0fb 0%, var(--bg) 55%);
  padding: 24px;
}
.login-card {
  width: 100%; max-width: 400px;
  background: var(--surface); border-radius: 24px; box-shadow: var(--shadow);
  padding: 40px 36px 32px;
}
.login-card .brand-dot { margin: 0 auto 16px; width: 48px; height: 48px; border-radius: 14px; }
.login-card h1 { font-size: 22px; text-align: center; }
.login-card .sub { text-align: center; color: var(--text-2); font-size: 13.5px; margin: 0 0 26px; }
.login-card .btn { width: 100%; padding: 11px; font-size: 15px; margin-top: 6px; }
.login-foot { text-align: center; color: var(--text-3); font-size: 12px; margin-top: 22px; }

/* ---------------------------------------------------------------- Toast */

#toast-root { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 1000;
  display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: rgba(29, 29, 31, 0.92); color: #f5f5f7;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 980px; padding: 10px 22px;
  font-size: 13.5px; font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: toast-in .25s ease;
}
.toast.err { background: rgba(255, 59, 48, 0.95); color: #fff; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- Modal */

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface); border-radius: 20px; box-shadow: var(--shadow);
  width: 100%; max-width: 520px; max-height: 85vh; overflow-y: auto;
  padding: 26px 28px;
  animation: toast-in .2s ease;
}

/* ---------------------------------------------------------------- Detailseite */

.kv { display: grid; grid-template-columns: 180px 1fr; gap: 6px 16px; font-size: 13.5px; }
.kv dt { color: var(--text-2); font-weight: 500; }
.kv dd { margin: 0; word-break: break-word; }
@media (max-width: 600px) { .kv { grid-template-columns: 1fr; } .kv dt { margin-top: 6px; } }

.receipt-frame { text-align: center; }
.receipt-frame img {
  max-width: 100%; max-height: 640px;
  border-radius: var(--radius-s); box-shadow: var(--shadow-s);
  transition: transform .25s ease;
}
.receipt-tools { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }

/* Bild-Lupe (Hover-Zoom) + Klick zum Öffnen in voller Größe */
.zoom-wrap { position: relative; display: inline-block; line-height: 0; cursor: zoom-in; max-width: 100%; }
.zoom-wrap img { display: block; max-width: 100%; }
.zoom-lens {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 6px 22px rgba(0,0,0,.4);
  background-color: #fff; background-repeat: no-repeat;
  pointer-events: none; display: none; z-index: 40;
}

/* Bon-Schnellvorschau beim Hover über den "Bild"-Link in der Liste */
#bon-preview {
  position: fixed; z-index: 1000; display: none;
  background: #fff; border: 1px solid var(--sep); border-radius: 14px; padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.32);
  pointer-events: none;
}
#bon-preview img { display: none; max-width: calc(100vw - 40px); max-height: calc(100vh - 40px); border-radius: 8px; }
#bon-preview .bon-preview-load { padding: 22px 30px; color: var(--text-2); font-size: 13px; white-space: nowrap; }
/* Mit gedrückter Strg-Taste fixierte Vorschau: Maus interagiert, Lupe folgt */
#bon-preview.pinned { pointer-events: auto; cursor: crosshair; }
#bon-preview .bon-preview-hint {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  text-align: center; font-size: 11.5px; font-weight: 500; color: #fff;
  background: rgba(0,0,0,.55); padding: 4px 8px; border-radius: 8px; pointer-events: none;
}
#bon-preview.pinned .bon-preview-hint { display: none; }

.duplist { list-style: none; margin: 0; padding: 0; }
.duplist li { padding: 10px 0; border-bottom: 1px solid var(--sep); }
.duplist li:last-child { border-bottom: none; }
.duplist .reasons { color: var(--text-2); font-size: 12.5px; margin-top: 2px; }

/* ---------------------------------------------------------------- Filterbar */

.filterbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.filterbar .field { margin: 0; }
.filterbar .field.w-s { width: 110px; }
.filterbar .field.w-m { width: 170px; }
.filterbar .field.w-l { width: 230px; }

.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 34px; height: 34px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-s); font-size: 13px; font-weight: 500; color: var(--text);
}
.pagination a:hover { background: rgba(0,0,0,0.06); text-decoration: none; }
.pagination .current { background: var(--accent); color: #fff; }
.pagination .dots { color: var(--text-3); }

/* ---------------------------------------------------------------- Charts */

.chart-box { position: relative; height: 280px; }
.chart-box.tall { height: 320px; }

/* ---------------------------------------------------------------- Diverses */

.muted { color: var(--text-2); }
.small { font-size: 12.5px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12.5px; }
.right { text-align: right; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.spacer { height: 14px; }
.inline-actions { display: flex; gap: 6px; align-items: center; }
.cred-box {
  background: #f5f5f7; border-radius: var(--radius-s); padding: 14px 16px;
  font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 13px;
}

@media (max-width: 980px) {
  .brand-name { display: none; }
}
@media (max-width: 860px) {
  .topbar { padding: 0 12px; gap: 8px; }
  .userchip-text { display: none; }
  .main { padding: 18px 14px 50px; }
  .kv { grid-template-columns: 1fr; }
}

/* Nur im Druck/PDF sichtbar */
.print-only { display: none; }
.print-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid #e5e5ea; }
.print-head img { height: 40px; width: auto; }
.print-head .ph-title { font-size: 20px; font-weight: 700; }
.print-head .ph-sub { font-size: 12.5px; color: var(--text-2); }

@media print {
  .topbar, .page-actions, .filterbar, .pagination, .print-hide { display: none !important; }
  .print-only { display: block !important; }
  .main { width: 100%; max-width: none; margin: 0; padding: 0; }
  .card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
  .grid-2, .grid-3, .grid-4 { break-inside: avoid; }
  .chart-box { height: 260px !important; }
  body { background: #fff; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  @page { margin: 14mm; }
}

/* ---------------------------------------------------------------- Ticketsystem */
.ticket-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 1000px) { .ticket-row { grid-template-columns: 1fr; } }
.ticket-message { white-space: pre-wrap; line-height: 1.55; }
.reply { border-left: 3px solid #d2d2d7; padding: 4px 0 4px 14px; }
.reply + .reply { margin-top: 16px; }
.reply-agent { border-left-color: var(--accent); }
.reply-meta { font-size: 12px; color: var(--text-2); margin-bottom: 5px; }
.reply-body { white-space: pre-wrap; line-height: 1.5; }
.t-info { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.t-info td { padding: 4px 0; vertical-align: top; }
.t-info td:first-child { color: var(--text-2); width: 92px; white-space: nowrap; padding-right: 10px; }
