/* ═══════════════════════════════════════════
   DETAIL & ADMIN PAGES
   ═══════════════════════════════════════════ */

/* ── Shared page header ── */
.detail-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.detail-header .container { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.detail-breadcrumb a { color: var(--brand); text-decoration: none; }
.detail-breadcrumb a:hover { text-decoration: underline; }
.detail-breadcrumb span { color: #cbcbd8; }
.detail-title { font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; }
.detail-meta  { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: .5rem; }
.detail-meta-item { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }
.detail-meta-item svg { width: 13px; height: 13px; color: var(--text-muted); }

/* ── Status badges ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  border-radius: 9999px;
  font-size: .74rem;
  font-weight: 700;
}
.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-paid     { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-active   { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-accepted { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-open     { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.status-expiring { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.status-overdue  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-expired  { background: #f3f3f7; color: var(--text-muted); border: 1px solid var(--border); }
.status-unknown  { background: #f3f3f7; color: var(--text-muted); border: 1px solid var(--border); }
.status-pending   { background: #f0f9ff; color: #0369a1; border: 1px solid #bae6fd; }
.status-inactive  { background: #f3f3f7; color: var(--text-muted); border: 1px solid var(--border); }
.status-banned    { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-suspended { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-solved    { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-closed    { background: #f3f3f7; color: var(--text-muted); border: 1px solid var(--border); }
.status-draft     { background: #f3f3f7; color: var(--text-muted); border: 1px solid var(--border); }
.status-cancelled { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-offline   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-stopped   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-running   { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-online    { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-locked    { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-lock      { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-gesperrt  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-inaktiv   { background: #f3f3f7; color: var(--text-muted); border: 1px solid var(--border); }
.status-aktiv     { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-declined  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ── Admin layout ── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.admin-sidebar {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: .75rem;
  position: sticky;
  top: 80px;
}
.admin-sidebar-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: .5rem .75rem;
  margin-bottom: .25rem;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: background .12s, color .12s;
  margin-bottom: 2px;
}
.admin-nav-link:hover,
.admin-nav-link.active { background: var(--brand-light); color: var(--brand); }
.admin-nav-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.admin-main { min-width: 0; }

/* ── Content card ── */
.content-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.content-card-title {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.content-card-title span { font-weight: 400; font-size: .82rem; color: var(--text-muted); }

/* ── Data rows ── */
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .875rem;
  gap: 1rem;
}
.data-row:last-child { border-bottom: none; }
.data-label { color: var(--text-muted); flex-shrink: 0; }
.data-value { font-weight: 600; text-align: right; }
.data-value a { color: var(--brand); text-decoration: none; }
.data-value a:hover { text-decoration: underline; }

/* ── Invoice / Offer table ── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.admin-table th {
  text-align: left;
  padding: .65rem 1rem;
  background: var(--surface-alt);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--surface-alt); }
.admin-table .amount { font-weight: 700; color: var(--brand); }

/* ── Invoice document ── */
.invoice-doc {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
}
.invoice-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.invoice-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand);
  letter-spacing: -.04em;
}
.invoice-meta { text-align: right; }
.invoice-meta h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .25rem; }
.invoice-meta p  { font-size: .82rem; color: var(--text-muted); margin-bottom: .15rem; }

.invoice-parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.invoice-party h4  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .5rem; }
.invoice-party p   { font-size: .875rem; color: var(--gray-700); line-height: 1.6; }

.invoice-items { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.invoice-items th {
  text-align: left;
  padding: .65rem 0;
  border-bottom: 2px solid var(--border);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 700;
}
.invoice-items th:last-child,
.invoice-items td:last-child { text-align: right; }
.invoice-items td {
  padding: .85rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .875rem;
}
.invoice-items tr:last-child td { border-bottom: none; }

.invoice-totals { margin-left: auto; max-width: 280px; }
.invoice-total-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .875rem; }
.invoice-total-row.grand { font-weight: 800; font-size: 1.05rem; padding-top: .75rem; border-top: 2px solid var(--border); margin-top: .35rem; color: var(--brand); }

.invoice-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── DNS Table ── */
.dns-table { width: 100%; border-collapse: collapse; font-size: .85rem; font-family: monospace; }
.dns-table th { text-align: left; padding: .6rem .75rem; background: var(--surface-alt); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); border-bottom: 1px solid var(--border); font-family: sans-serif; }
.dns-table td { padding: .7rem .75rem; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.dns-table tr:last-child td { border-bottom: none; }
.dns-type { display: inline-block; background: var(--brand-mid); color: var(--brand); padding: .1rem .5rem; border-radius: 4px; font-size: .72rem; font-weight: 700; font-family: sans-serif; }

/* ── Domain detail ── */
.domain-status-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.domain-status-bar.expiring { background: #fffbeb; border-color: #fde68a; }
.domain-name-big { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.expiry-countdown { font-size: .82rem; }

/* Print / download button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .48rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--gray-700);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  text-decoration: none;
}
.btn-icon:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.btn-icon svg { width: 14px; height: 14px; }

/* Progress bar */
.progress-bar { background: var(--border-soft); border-radius: 9999px; height: 6px; overflow: hidden; margin-top: .5rem; }
.progress-fill { height: 100%; border-radius: 9999px; background: var(--brand); transition: width .6s; }
.progress-fill.warning { background: #b45309; }
.progress-fill.danger  { background: #dc2626; }

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; padding: 1rem; }
  .admin-sidebar { position: static; }
  .invoice-parties { grid-template-columns: 1fr; }
}
@media print {
  .site-header, .admin-sidebar, .admin-actions, footer { display: none !important; }
  .admin-layout { grid-template-columns: 1fr; padding: 0; }
  .invoice-doc { border: none; padding: 0; }
}

/* ══════════════════════════════════════════════
   ACCOUNT LAYOUT — clean, token-free
   ══════════════════════════════════════════════ */
.acc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  box-sizing: border-box;
}

/* Sidebar */
.acc-sidebar {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.acc-sidebar-user {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-mid));
  border-bottom: 1px solid var(--border);
}
.acc-avatar {
  width: 38px; height: 38px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem;
  flex-shrink: 0;
}
.acc-user-name  { font-weight: 700; font-size: .875rem; color: var(--text); }
.acc-user-email { font-size: .72rem; color: var(--text-muted); }

.acc-nav { padding: .5rem; }
.acc-nav-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: background .12s, color .12s;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: 2px;
}
.acc-nav-item:hover  { background: var(--brand-light); color: var(--brand); }
.acc-nav-item.active { background: var(--brand-light); color: var(--brand); font-weight: 600; }
.acc-nav-item svg    { width: 15px; height: 15px; flex-shrink: 0; }
.acc-nav-divider     { height: 1px; background: var(--border-soft); margin: .5rem 0; }
.acc-nav-logout      { color: #dc2626; }
.acc-nav-logout:hover{ background: #fef2f2; color: #dc2626; }

/* Main content area */
.acc-main { min-width: 0; }

/* Content sections */
.acc-section {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.acc-section-title {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.acc-section-title .sub { font-size: .8rem; font-weight: 400; color: var(--text-muted); }

/* Stats row */
.acc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.acc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.acc-stat-num   { font-size: 1.8rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.acc-stat-label { font-size: .75rem; color: var(--text-muted); margin-top: .35rem; }
.acc-stat.brand { background: var(--brand-light); border-color: #ede9fe; }
.acc-stat.brand .acc-stat-num { color: var(--brand); }
.acc-stat.success{ background: #f0fdf4; border-color: #bbf7d0; }
.acc-stat.success .acc-stat-num { color: #15803d; }

/* Service rows */
.svc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.svc-row:last-child { border-bottom: none; }
.svc-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--brand-mid);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.svc-info { flex: 1; }
.svc-name { font-weight: 700; font-size: .9rem; }
.svc-meta { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.svc-actions { display: flex; gap: .4rem; flex-shrink: 0; }

/* Breadcrumb */
.acc-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.acc-breadcrumb a { color: var(--brand); text-decoration: none; }
.acc-breadcrumb a:hover { text-decoration: underline; }
.acc-breadcrumb svg { width: 10px; height: 10px; }

/* Ticket styles */
.ticket-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--text);
  transition: background .12s;
}
.ticket-row:last-child { border-bottom: none; }
.ticket-row:hover { background: var(--surface-alt); margin: 0 -.75rem; padding-left: .75rem; padding-right: .75rem; border-radius: 10px; }
.ticket-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-mid); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ticket-icon svg { width: 16px; height: 16px; stroke-width: 1.8; }
.ticket-subject { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; }
.ticket-meta    { font-size: .75rem; color: var(--text-muted); }
.ticket-right   { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; flex-shrink: 0; }

/* Message thread */
.message-thread { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.msg {
  display: flex;
  gap: .875rem;
  max-width: 90%;
}
.msg.agent { align-self: flex-start; }
.msg.user  { align-self: flex-end; flex-direction: row-reverse; }
.msg-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: white;
  flex-shrink: 0;
}
.msg.agent .msg-avatar { background: var(--brand); }
.msg.user  .msg-avatar { background: #33334a; }
.msg-bubble {
  padding: .75rem 1rem;
  border-radius: 16px;
  font-size: .875rem;
  line-height: 1.6;
}
.msg.agent .msg-bubble { background: var(--brand-light); color: var(--text); border-bottom-left-radius: 4px; }
.msg.user  .msg-bubble { background: var(--brand); color: white; border-bottom-right-radius: 4px; }
.msg-meta  { font-size: .7rem; color: var(--text-muted); margin-top: .3rem; }
.msg.user .msg-meta { text-align: right; }

/* Priority pills */
.prio-high   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.prio-medium { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.prio-low    { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

/* Progress bar */
.pbar { background: var(--border-soft); border-radius: 9999px; height: 6px; overflow: hidden; }
.pbar-fill { height: 100%; border-radius: 9999px; background: var(--brand); }
.pbar-fill.warn { background: #b45309; }
.pbar-fill.danger { background: #dc2626; }

@media (max-width: 900px) {
  .acc-layout { grid-template-columns: 1fr; padding: 1rem clamp(.75rem,2vw,1.5rem); }
  .acc-sidebar { position: static; }
  .acc-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Shared Tab Component (support, admin) ── */
.sup-tabs-wrap { display:flex;gap:.25rem;padding:.5rem .5rem 0;border-bottom:2px solid var(--border);background:var(--surface);border-radius:14px 14px 0 0;border:1.5px solid var(--border);border-bottom:none; }
.sup-tab { display:inline-flex;align-items:center;gap:.4rem;padding:.6rem 1rem;border:none;background:none;color:var(--text-muted);font-size:.82rem;font-weight:600;cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-2px;border-radius:8px 8px 0 0;transition:color .15s,border-color .15s; }
.sup-tab:hover { color:var(--text); }
.sup-tab.active { color:var(--brand);border-bottom-color:var(--brand); }
.sup-tab-panel { border-radius:0 0 14px 14px;border-top:none;margin-top:0; }
.sup-contact-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:.75rem;margin-top:.75rem; }
.sup-contact-card { display:flex;gap:1rem;padding:1rem 1.125rem;background:var(--bg);border:1.5px solid var(--border);border-radius:12px;transition:border-color .15s; }
.sup-contact-card:hover { border-color:var(--brand); }
.sup-contact-card--danger { border-color:#fecaca; }
.sup-contact-card--danger:hover { border-color:#dc2626; }
.sup-contact-icon { width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.sup-contact-body { flex:1;min-width:0; }
.sup-contact-title { font-weight:700;font-size:.85rem;margin-bottom:.2rem;display:flex;align-items:center;gap:.4rem;flex-wrap:wrap; }
.sup-contact-value { display:block;font-size:.95rem;font-weight:700;color:var(--brand);text-decoration:none;margin-bottom:.2rem; }
.sup-contact-value:hover { text-decoration:underline; }
.sup-contact-desc { font-size:.77rem;color:var(--text-muted);line-height:1.4; }
.sup-contact-hours { font-size:.73rem;color:var(--text-muted);margin-top:.2rem; }
.sup-badge-warn { font-size:.65rem;font-weight:700;padding:.15rem .45rem;background:#fef2f2;color:#dc2626;border:1px solid #fecaca;border-radius:9999px; }
.sup-badge-free { font-size:.65rem;font-weight:700;padding:.15rem .45rem;background:#f0fdf4;color:#15803d;border:1px solid #bbf7d0;border-radius:9999px; }
.sup-badge-info { font-size:.65rem;font-weight:700;padding:.15rem .45rem;background:#f5f3ff;color:#7c3aed;border:1px solid #ddd6fe;border-radius:9999px; }
.sup-hotline-warn { display:flex;gap:.75rem;align-items:flex-start;padding:.875rem 1rem;background:#fef2f2;border:1.5px solid #fecaca;border-radius:10px;color:#991b1b;font-size:.82rem;line-height:1.5;margin-bottom:1.25rem; }

.sup-number-row { display:flex;align-items:center;gap:.75rem;padding:.6rem .875rem;background:var(--surface);border:1.5px solid var(--border);border-radius:10px;margin-bottom:.5rem; }
.sup-number-val { font-weight:700;font-size:.88rem;flex:1; }
.sup-number-label { font-size:.75rem;color:var(--text-muted); }
.sup-number-date { font-size:.72rem;color:var(--text-muted); }
.sup-number-del { background:none;border:1px solid #fecaca;color:#dc2626;border-radius:7px;padding:.25rem .5rem;cursor:pointer;font-size:.75rem; }
.sup-number-del:hover { background:#fef2f2; }
.ticket-row { display:flex;align-items:center;gap:1rem;padding:1rem 1.25rem;background:var(--surface);border:1.5px solid var(--border);border-radius:14px;margin-bottom:.75rem;text-decoration:none;color:inherit;transition:border-color .15s }
.ticket-row:hover { border-color:var(--brand) }
.ticket-row-icon { width:38px;height:38px;border-radius:10px;background:var(--brand-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--brand) }
.ticket-row-body { flex:1;min-width:0 }
.ticket-row-subject { font-size:.88rem;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:.2rem }
.ticket-row-meta { font-size:.75rem;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis }
.ticket-row-right { flex-shrink:0;text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:.35rem }
.ticket-row-date { font-size:.72rem;color:var(--text-muted) }
