/*
 * Microsoft Places Desk Status Report — Stylesheet
 * Shares design tokens with the WorkPlace Kiosk app.
 */

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ──────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --ink:   #0A1D5F;
  --vi:    #0972CE;
  --vi2:   #37C1CE;

  /* Mode colours */
  --c-reservable:  #107c10;
  --c-dropin:      #0972CE;
  --c-assigned:    #8764b8;
  --c-unavailable: #d13438;
  --c-unknown:     #797775;

  /* Surfaces */
  --snow:    #f7f8fb;
  --cloud:   #eef0f6;
  --mist:    #e2e4ef;
  --silver:  #abafc4;
  --surface: #ffffff;
  --text:    #1a1a2e;
  --muted:   #5a6278;

  /* Layout */
  --top-h:  56px;
  --stat-h: 48px;
  --filt-h: 52px;
  --rad:    8px;
}

/* ── Base ───────────────────────────────────────────────────────────────────── */
html, body { height: 100%; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--snow);
  overflow: hidden;
}

#app { display: flex; flex-direction: column; height: 100vh; }

#main-app {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0; /* allows flex children to scroll rather than overflow the viewport */
  overflow: hidden;
}

[hidden] { display: none !important; }

/* ── Sign-in screen ─────────────────────────────────────────────────────────── */
#signin-screen {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  z-index: 100;
  overflow: hidden;
}

#signin-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,193,206,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,193,206,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

#signin-screen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vi) 0%, var(--vi2) 100%);
}

.signin-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 48px 44px;
  text-align: left;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}

.signin-logo {
  position: absolute;
  top: 24px;
  left: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}

.signin-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vi2);
  margin-bottom: 10px;
}

.signin-card h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.signin-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Microsoft-branded sign-in button */
.btn-ms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 24px;
  width: 100%;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}
.btn-ms:hover  { background: var(--vi); }
.btn-ms:active { background: #0861b0; }

/* ── Loading screen ─────────────────────────────────────────────────────────── */
#loading-screen {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--ink);
  gap: 20px;
  z-index: 100;
}

.loading-logo {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .7;
  margin-bottom: 8px;
}

.spinner {
  width: 44px; height: 44px;
  border: 4px solid rgba(255, 255, 255, .15);
  border-top-color: var(--vi2);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

#loading-msg {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.loading-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ── Error screen ───────────────────────────────────────────────────────────── */
#error-screen,
#consent-screen {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  z-index: 100;
}

.error-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 44px 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .32);
}

.error-icon { margin-bottom: 16px; }

.error-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.error-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.btn-retry {
  background: var(--vi);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}
.btn-retry:hover { background: #075fab; }

/* ── Topbar ─────────────────────────────────────────────────────────────────── */
#topbar {
  height: var(--top-h);
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  flex-shrink: 0;
  z-index: 10;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-back:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); }

.tb-logo {
  height: 26px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.tb-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.tb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  white-space: nowrap;
  min-width: 0;
}

.tb-breadcrumb-parent {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s ease;
  flex-shrink: 0;
}

.tb-breadcrumb-parent:hover { color: rgba(255,255,255,.8); }

.tb-breadcrumb-sep {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
}

.tb-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.tb-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-export:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .35); }

.btn-refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-refresh:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .35); }
.btn-refresh:disabled { opacity: .45; cursor: not-allowed; }

.btn-signout {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-signout:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); }

/* ── Stats bar ──────────────────────────────────────────────────────────────── */
#statsbar {
  height: var(--stat-h);
  background: var(--surface);
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 6px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
#statsbar::-webkit-scrollbar { display: none; }

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--cloud);
  white-space: nowrap;
  flex-shrink: 0;
}
.stat-num { font-weight: 700; font-size: 14px; }

.stat-chip.total       { background: var(--ink);  color: #fff; }
.stat-chip.reservable  { background: #e6f4ea; color: var(--c-reservable); }
.stat-chip.dropin      { background: #ddeeff; color: var(--c-dropin); }
.stat-chip.assigned    { background: #f0ebf8; color: var(--c-assigned); }
.stat-chip.unavailable { background: #fde8e9; color: var(--c-unavailable); }
.stat-chip.unknown     { background: var(--cloud); color: var(--muted); }

/* ── Filter bar ─────────────────────────────────────────────────────────────── */
#filterbar {
  height: var(--filt-h);
  background: var(--surface);
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
#filterbar::-webkit-scrollbar { display: none; }

.filter-srch {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 0 10px;
  min-width: 220px;
  flex-shrink: 0;
  transition: border-color .15s;
}
.filter-srch:focus-within { border-color: var(--vi); }
.filter-srch svg { color: var(--silver); flex-shrink: 0; }

.filter-srch input {
  border: none;
  background: transparent;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  padding: 8px 0;
  width: 100%;
}
.filter-srch input::placeholder { color: var(--silver); }

/* Custom select */
.filter-sel {
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 7px 30px 7px 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23abafc4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  min-width: 130px;
  flex-shrink: 0;
  transition: border-color .15s;
}
.filter-sel:focus { outline: 2px solid var(--vi); outline-offset: -1px; border-color: transparent; }
.filter-sel:hover { border-color: var(--vi); }

.btn-clear {
  background: transparent;
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-clear:hover { background: var(--cloud); color: var(--text); }

.filter-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.btn-tree-ctrl {
  background: transparent;
  border: none;
  padding: 6px 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--vi);
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
  transition: background .15s;
}
.btn-tree-ctrl:hover { background: var(--cloud); }

/* ── Report area ────────────────────────────────────────────────────────────── */
#report-area {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 20px 32px;
}

/* ── Tree: empty state ──────────────────────────────────────────────────────── */
.tree-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  color: var(--silver);
  font-size: 15px;
}

/* ── Tree: building ─────────────────────────────────────────────────────────── */
.building-block {
  margin-bottom: 14px;
  border: 1px solid var(--mist);
  border-radius: var(--rad);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.building-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.building-header:hover  { background: #112574; }
.building-header:focus-visible { outline: 2px solid var(--vi2); outline-offset: -2px; }

.building-name  { font-size: 15px; font-weight: 600; flex: 1; }
.building-count { font-size: 12px; opacity: .55; font-weight: 400; }

.building-body.hidden  { display: none; }

/* ── Tree: floor ────────────────────────────────────────────────────────────── */
.floor-block { border-top: 1px solid var(--mist); }

.floor-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 28px;
  background: var(--cloud);
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.floor-header:hover  { background: #e4e7f2; }
.floor-header:focus-visible { outline: 2px solid var(--vi); outline-offset: -2px; }

.floor-name  { font-size: 14px; font-weight: 600; color: var(--ink); flex: 1; }
.floor-count { font-size: 12px; color: var(--muted); }

.floor-body.hidden { display: none; }

/* ── Tree: section ──────────────────────────────────────────────────────────── */
.section-block { border-top: 1px solid var(--mist); }
.section-block:first-child { border-top: none; }

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 44px;
  background: var(--surface);
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.section-header:hover  { background: var(--snow); }
.section-header:focus-visible { outline: 2px solid var(--vi); outline-offset: -2px; }

.section-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  flex: 1;
}
.section-count { font-size: 12px; color: var(--silver); }

.section-body.hidden { display: none; }

/* ── Chevron ────────────────────────────────────────────────────────────────── */
.chevron {
  flex-shrink: 0;
  transition: transform .2s cubic-bezier(.4, 0, .2, 1);
}
.building-header .chevron { color: rgba(255, 255, 255, .7); }
.floor-header    .chevron { color: var(--silver); }
.section-header  .chevron { color: var(--silver); }

.building-header.collapsed .chevron,
.floor-header.collapsed    .chevron,
.section-header.collapsed  .chevron { transform: rotate(-90deg); }

/* ── Desk table ─────────────────────────────────────────────────────────────── */
.desk-table {
  width: 100%;
  border-collapse: collapse;
  /* Fixed layout: columns are sized by the header row, not by cell content.
     This keeps every section's columns perfectly aligned. */
  table-layout: fixed;
}

/* Column widths — set on <th> so fixed layout applies them uniformly */
.desk-table thead th:nth-child(1) { width: auto; }      /* Desk — fills remaining */
.desk-table thead th:nth-child(2) { width: 130px; }     /* Mode badge */
.desk-table thead th:nth-child(3) { width: 38%; }       /* Info (email / reason) */

.desk-table thead th {
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--silver);
  text-align: left;
  background: var(--snow);
  border-bottom: 1px solid var(--mist);
  white-space: nowrap;
  overflow: hidden;
}
.desk-table thead th:first-child { padding-left: 60px; }

.desk-table tbody tr {
  border-bottom: 1px solid #f0f1f6;
  transition: background .1s;
}
.desk-table tbody tr:last-child { border-bottom: none; }
.desk-table tbody tr:hover      { background: var(--snow); }

.desk-table td {
  padding: 9px 12px;
  vertical-align: middle;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

td.desk-name {
  padding-left: 60px;
  font-weight: 500;
  color: var(--text);
}

td.desk-info {
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

/* ── Mode badges ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}

.badge-reservable  { background: #e6f4ea; color: var(--c-reservable); }
.badge-dropin      { background: #ddeeff; color: var(--c-dropin); }
.badge-assigned    { background: #f0ebf8; color: var(--c-assigned); }
.badge-unavailable { background: #fde8e9; color: var(--c-unavailable); }
.badge-unknown     { background: var(--cloud); color: var(--muted); }

/* ── Help button ────────────────────────────────────────────────────────────── */
.btn-help {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-help:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .35); }

/* ── Help drawer ────────────────────────────────────────────────────────────── */
.help-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 29, 95, .35);
  backdrop-filter: blur(2px);
  z-index: 200;
  animation: fadeIn .2s ease;
}

.help-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 480px;
  max-width: 95vw;
  background: var(--surface);
  box-shadow: -8px 0 48px rgba(0, 0, 0, .18);
  z-index: 201;
  display: flex;
  flex-direction: column;
  animation: slideIn .25s cubic-bezier(.4, 0, .2, 1);
}

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 3px solid var(--teal);
  background: var(--ink);
  flex-shrink: 0;
}

.help-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.help-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 6px;
  width: 32px; height: 32px;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.help-close:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.help-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.help-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--mist);
}
.help-section:last-child { border-bottom: none; padding-bottom: 0; }

.help-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--vi);
  margin-bottom: 10px;
}

.help-section p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 8px;
}
.help-section p:last-child { margin-bottom: 0; }

.help-section strong { color: var(--text); font-weight: 600; }

.help-section code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--cloud);
  color: var(--ink);
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 500;
}

/* Desk mode explanation rows */
.help-modes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.help-mode-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.help-mode-row .badge { flex-shrink: 0; margin-top: 2px; }

/* Numbered / bulleted lists */
.help-list {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.help-sublist {
  padding-left: 18px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  list-style: disc;
}

.help-list strong { color: var(--text); font-weight: 600; }
.help-list code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--cloud);
  color: var(--ink);
  padding: 1px 5px;
  border-radius: 4px;
}

/* CSV column chips */
.help-csv-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.help-csv-cols code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--cloud);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* Scrollbar inside drawer */
.help-body::-webkit-scrollbar        { width: 5px; }
.help-body::-webkit-scrollbar-track  { background: transparent; }
.help-body::-webkit-scrollbar-thumb  { background: var(--mist); border-radius: 3px; }
.help-body::-webkit-scrollbar-thumb:hover { background: var(--silver); }

/* ── Scrollbar styling (Chromium) ───────────────────────────────────────────── */
#report-area::-webkit-scrollbar        { width: 6px; }
#report-area::-webkit-scrollbar-track  { background: transparent; }
#report-area::-webkit-scrollbar-thumb  { background: var(--mist); border-radius: 3px; }
#report-area::-webkit-scrollbar-thumb:hover { background: var(--silver); }
