/*
 * Microsoft Places Control Center — Stylesheet
 * Based on the Desk Report stylesheet; extended with panel, form,
 * item-row, type-badge, and row-action styles.
 */

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

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

  /* Resource type colours */
  --c-building:   #0A1D5F;
  --c-floor:      #0972CE;
  --c-section:    #5a6278;
  --c-room:       #107c10;
  --c-workspace:  #8764b8;
  --c-desk:       #0e7d80;

  /* 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;
  overflow: hidden;
}

/* ── App body: nav + content side-by-side ────────────────────────────────────── */
#app-body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

#nav-panel {
  width: 220px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
#nav-panel::-webkit-scrollbar        { width: 4px; }
#nav-panel::-webkit-scrollbar-track  { background: transparent; }
#nav-panel::-webkit-scrollbar-thumb  { background: var(--mist); border-radius: 2px; }

.nav-panel-hdr {
  padding: 14px 14px 6px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--silver);
  flex-shrink: 0;
}

/* Nav tree items */
.nav-all {
  display: flex; align-items: center;
  padding: 9px 14px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  cursor: pointer; user-select: none;
  border-bottom: 1px solid var(--mist);
  margin-bottom: 6px;
  transition: background .12s, color .12s;
}
.nav-all:hover { background: var(--cloud); color: var(--text); }
.nav-all.nav-active { background: rgba(9,114,206,.09); color: var(--vi); font-weight: 600; }

.nav-country-hdr {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 10px 5px;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  cursor: pointer; user-select: none;
  transition: color .12s;
}
.nav-country-hdr:hover { color: var(--vi); }
.nav-country-hdr.nav-active { color: var(--vi); }
.nav-country-hdr .chevron { color: var(--silver); flex-shrink: 0; width: 12px; height: 12px; }
.nav-country-hdr.nav-collapsed .chevron { transform: rotate(-90deg); }

.nav-building {
  display: block;
  padding: 7px 14px 7px 28px;
  font-size: 13px; color: var(--muted);
  cursor: pointer; user-select: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: background .12s, color .12s;
}
.nav-building:hover { background: var(--cloud); color: var(--text); }
.nav-building.nav-active {
  background: rgba(9,114,206,.09);
  color: var(--vi); font-weight: 600;
  border-left: 3px solid var(--vi);
  padding-left: 25px;
}
.nav-country-body.hidden { display: none; }

[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;
}

.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 / Consent screens ────────────────────────────────────────────────── */
#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;
}

.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-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-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); }

.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.buildings  { background: #e3e7f4; color: var(--c-building); }
.stat-chip.floors     { background: #ddeeff; color: var(--c-floor); }
.stat-chip.sections   { background: var(--cloud); color: var(--muted); }
.stat-chip.rooms      { background: #e6f4ea; color: var(--c-room); }
.stat-chip.workspaces { background: #f0ebf8; color: var(--c-workspace); }
.stat-chip.desks      { background: #d8f4f6; color: var(--c-desk); }

/* ── 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); }

.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); }

.btn-new-building {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background .15s;
}
.btn-new-building:hover { background: var(--vi); }

.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;
  min-width: 0;
  overflow-y: auto;
  padding: 16px 20px 32px;
}

#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); }

#report-body.tree-refreshing {
  opacity: .35;
  pointer-events: none;
  transition: opacity .15s;
}

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

/* ── Tree: country group ────────────────────────────────────────────────────── */
.country-block { margin-bottom: 24px; }
.country-header {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  border-left: 3px solid var(--vi2);
  background: var(--cloud);
  cursor: pointer; user-select: none;
  margin-bottom: 10px;
  transition: background .15s;
}
.country-header:hover { background: var(--mist); }
.country-name {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); flex: 1;
}
.country-count { font-size: 11px; color: var(--silver); }
.country-body.hidden { display: none; }
.country-header .chevron { color: var(--silver); }
.country-header.collapsed .chevron { transform: rotate(-90deg); }

/* ── 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-city  { font-size: 12px; opacity: .55; font-weight: 400; }
.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-sort  { font-size: 11px; color: var(--silver); font-weight: 400; }
.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); }

/* ── Row actions (inline edit/new buttons) ──────────────────────────────────── */
.row-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-edit-sm {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--mist);
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .12s, border-color .12s, color .12s;
}
.btn-edit-sm:hover { background: var(--cloud); border-color: var(--silver); color: var(--text); }

.building-header .btn-edit-sm {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}
.building-header .btn-edit-sm:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

.btn-new-sm {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--vi);
  background: transparent;
  border: 1px solid rgba(9,114,206,.3);
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .12s, border-color .12s;
}
.btn-new-sm:hover { background: #ddeeff; border-color: var(--vi); }

.building-header .btn-new-sm {
  color: var(--vi2);
  border-color: rgba(55,193,206,.35);
  background: rgba(55,193,206,.1);
}
.building-header .btn-new-sm:hover {
  background: rgba(55,193,206,.22);
  border-color: var(--vi2);
}

/* ── Item rows (desk / workspace / room) ────────────────────────────────────── */
.item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 60px;
  border-top: 1px solid #f0f1f6;
  transition: background .1s;
}
.item-row:hover { background: var(--snow); }

.item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.item-info-text {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

.item-info-text.dim { opacity: .65; }

.item-info-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  background: var(--cloud);
  color: var(--muted);
  white-space: nowrap;
  text-transform: capitalize;
}

.item-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ── Type badges ────────────────────────────────────────────────────────────── */
.type-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.type-building  { background: #e3e7f4; color: var(--c-building); }
.type-floor     { background: #ddeeff; color: var(--c-floor); }
.type-section   { background: var(--cloud); color: var(--c-section); }
.type-room      { background: #e6f4ea; color: var(--c-room); }
.type-workspace { background: #f0ebf8; color: var(--c-workspace); }
.type-desk      { background: #d8f4f6; color: var(--c-desk); }

/* ── 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); }

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

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

/* ── Slide-in panel ─────────────────────────────────────────────────────────── */
#panel {
  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);
}

.panel-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;
}

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

.panel-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;
}
.panel-close:hover { background: rgba(255,255,255,.2); color: #fff; }

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

.panel-body::-webkit-scrollbar        { width: 5px; }
.panel-body::-webkit-scrollbar-track  { background: transparent; }
.panel-body::-webkit-scrollbar-thumb  { background: var(--mist); border-radius: 3px; }
.panel-body::-webkit-scrollbar-thumb:hover { background: var(--silver); }

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--mist);
  background: var(--snow);
  flex-shrink: 0;
  gap: 12px;
}

.panel-footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

@keyframes panelErrorIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.panel-error-toast {
  position: absolute;
  bottom: 72px;
  left: 20px; right: 20px;
  background: #fff0f2;
  border: 1px solid rgba(209,52,56,.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px; line-height: 1.55;
  color: var(--c-unavailable);
  word-break: break-word;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(209,52,56,.14), 0 2px 8px rgba(0,0,0,.08);
  animation: panelErrorIn .18s ease;
}

.btn-panel-delete {
  background: transparent;
  color: var(--c-unavailable);
  border: 1px solid rgba(209,52,56,.3);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.btn-panel-delete:hover { background: #fde8e9; border-color: var(--c-unavailable); }
.btn-panel-delete:disabled { opacity: .45; cursor: not-allowed; }

.btn-panel-sync {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--vi);
  border: 1px solid rgba(9,114,206,.3);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer; flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.btn-panel-sync:hover { background: rgba(9,114,206,.08); border-color: var(--vi); }

.btn-panel-cancel {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.btn-panel-cancel:hover { background: var(--cloud); color: var(--text); }

.btn-panel-save {
  background: var(--vi);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.btn-panel-save:hover { background: #075fab; }
.btn-panel-save:disabled { opacity: .45; cursor: not-allowed; }

/* ── Form fields ────────────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.form-control {
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 9px 12px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text);
  width: 100%;
  transition: border-color .15s;
  outline: none;
}
.form-control:focus { border-color: var(--vi); box-shadow: 0 0 0 2px rgba(9,114,206,.1); }
.form-control::placeholder { color: var(--silver); }

.form-select {
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 9px 32px 9px 12px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text);
  width: 100%;
  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 10px center;
  cursor: pointer;
  transition: border-color .15s;
  outline: none;
}
.form-select:focus { border-color: var(--vi); box-shadow: 0 0 0 2px rgba(9,114,206,.1); }

.form-hint {
  font-size: 11px;
  color: var(--silver);
  line-height: 1.5;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--mist);
  margin: 8px 0 16px;
}

.form-check-group {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.form-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--vi);
  cursor: pointer;
}

.form-check-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.form-toggle-group {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.form-toggle-group .form-label { margin-bottom: 0; }
.form-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.form-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-toggle-track {
  width: 36px;
  height: 20px;
  background: var(--mist);
  border-radius: 10px;
  position: relative;
  transition: background .2s;
}
.form-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .2s;
}
.form-toggle input:checked + .form-toggle-track { background: var(--vi); }
.form-toggle input:checked + .form-toggle-track::after { transform: translateX(16px); }

/* ── 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);
}

.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;
}

.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-subheading {
  font-size: 12px; font-weight: 700;
  color: var(--text); margin: 14px 0 6px;
}

.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;
}

.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-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;
}

.help-resource-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}
.help-resource-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  padding: 6px 10px;
  border-bottom: 2px solid var(--mist);
}
.help-resource-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--mist);
  color: var(--muted);
  vertical-align: top;
  line-height: 1.5;
}
.help-resource-table tr:last-child td { border-bottom: none; }
.help-resource-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }

.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); }

/* ── Bulk Import / Sync toolbar buttons ─────────────────────────────────────── */
.btn-bulk-open, .btn-sync-open {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1px solid rgba(9,114,206,.35);
  border-radius: 6px; background: rgba(9,114,206,.06);
  color: var(--vi); font-family: inherit; font-size: 12px;
  font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.btn-bulk-open:hover, .btn-sync-open:hover { background: rgba(9,114,206,.14); border-color: var(--vi); }

/* ── Bulk Import modal ──────────────────────────────────────────────────────── */
.bulk-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,29,95,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 8000;
}
.bulk-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 95vw);
  max-height: 90vh;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  z-index: 8001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bulk-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: var(--ink);
  flex-shrink: 0;
}
.bulk-modal-title { font-size: 15px; font-weight: 700; color: #fff; }
.bulk-modal-close {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border: none; border-radius: 6px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  cursor: pointer; transition: background .15s;
}
.bulk-modal-close:hover { background: rgba(255,255,255,.2); color: #fff; }

.bulk-modal-body {
  flex: 1; overflow-y: auto;
  padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.bulk-modal-footer {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 14px 24px;
  border-top: 1px solid var(--mist);
  flex-shrink: 0;
}

/* Sections within modal */
.bulk-section {
  padding: 18px;
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 10px;
}
.bulk-section-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.bulk-count-badge {
  background: var(--vi); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  text-transform: none; letter-spacing: 0;
}
.bulk-hint { font-size: 13px; color: var(--muted); line-height: 1.55; }
.bulk-req  { color: var(--c-room); }

.bulk-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bulk-row-2 .form-group { margin-bottom: 0; }

.bulk-template-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.btn-bulk-template {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border: 1px solid var(--mist);
  border-radius: 7px; background: var(--surface);
  color: var(--ink); font-family: inherit; font-size: 13px;
  font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.btn-bulk-template:hover { background: var(--cloud); border-color: var(--silver); }

/* Upload zone */
.bulk-upload-zone {
  border: 2px dashed var(--mist); border-radius: 8px;
  padding: 28px 20px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative; margin-top: 10px;
}
.bulk-upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%;
}
.bulk-upload-zone:hover, .bulk-upload-zone.drag-over {
  border-color: var(--vi); background: var(--cloud);
}
.bulk-upload-zone.has-file { border-color: var(--vi2); background: rgba(55,193,206,.05); border-style: solid; }
.bulk-upload-zone svg { color: var(--silver); margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
.bulk-upload-zone.has-file svg { color: var(--vi2); }
.bulk-upload-main { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.bulk-upload-sub  { font-size: 12px; color: var(--muted); }
.bulk-upload-zone.has-file .bulk-upload-sub { color: var(--vi2); font-weight: 500; }

/* Preview table */
.bulk-table-wrap {
  overflow-x: auto; overflow-y: auto;
  max-height: 340px;
  border-radius: 7px;
  border: 1px solid var(--mist);
}
.bulk-preview-table {
  width: 100%; border-collapse: collapse;
  font-size: 12px;
}
.bulk-preview-table th {
  text-align: left; padding: 8px 12px;
  background: var(--cloud);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); white-space: nowrap;
  border-bottom: 1px solid var(--mist);
  position: sticky; top: 0; z-index: 2;
}
.bulk-preview-table td {
  padding: 7px 12px; border-bottom: 1px solid var(--mist);
  color: var(--text); max-width: 160px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bulk-preview-table tr:last-child td { border-bottom: none; }
/* Status column — sticky to left edge when scrolling horizontally */
.bulk-col-status {
  position: sticky; left: 0; z-index: 1;
  background: var(--surface);
  border-right: 1px solid var(--mist);
  min-width: 72px;
}
.bulk-preview-table thead .bulk-col-status { background: var(--cloud); z-index: 3; }
.bulk-row-status { font-size: 11px; font-weight: 600; white-space: nowrap; color: var(--muted); }
.bulk-row-status.ok    { color: #107c10; }
.bulk-row-status.fail  { color: var(--c-unavailable); }
.bulk-row-status.retry { color: var(--vi); }

/* Progress summary line */
.bulk-progress-summary {
  margin-top: 10px; font-size: 13px; font-weight: 600;
  display: flex; gap: 16px;
}
.bulk-summary-ok   { color: #107c10; }
.bulk-summary-fail { color: var(--c-unavailable); }

/* Progress */
.bulk-progress-track {
  height: 8px; background: var(--mist); border-radius: 4px;
  overflow: hidden; margin-top: 10px; margin-bottom: 6px;
}
.bulk-progress-bar {
  height: 100%; width: 0%; background: var(--vi2);
  border-radius: 4px; transition: width .25s ease;
}
/* Spinner in section label */
@keyframes bulkSpin { to { transform: rotate(360deg); } }
.bulk-spinner {
  display: inline-block; width: 12px; height: 12px;
  border: 2px solid var(--mist); border-top-color: var(--vi);
  border-radius: 50%;
  animation: bulkSpin .65s linear infinite;
  flex-shrink: 0;
}
/* Active row highlight in preview table */
@keyframes bulkRowPulse {
  0%, 100% { background-color: rgba(9,114,206,.05); }
  50%       { background-color: rgba(9,114,206,.14); }
}
.bulk-row-processing > td {
  animation: bulkRowPulse .9s ease-in-out infinite;
}
.bulk-progress-label { flex: 1; }

/* Error */
.bulk-error {
  font-size: 13px; color: var(--c-unavailable);
  background: #fff0f0; border: 1px solid #fcc;
  border-radius: 7px; padding: 10px 14px;
}

/* Mode toggle */
.bulk-mode-row { display: flex; align-items: center; }
.bulk-mode-toggle {
  display: inline-flex; gap: 2px;
  padding: 3px; background: var(--cloud);
  border-radius: 8px; border: 1px solid var(--mist);
}
.bulk-mode-opt {
  display: flex; align-items: center;
  padding: 6px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: background .15s, color .15s, box-shadow .15s;
  user-select: none; white-space: nowrap;
}
.bulk-mode-opt input[type="radio"] { display: none; }
.bulk-mode-opt:has(input:checked) {
  background: var(--surface); color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

/* Footer buttons */
.btn-bulk-cancel {
  padding: 9px 20px; border: 1px solid var(--mist); border-radius: 7px;
  background: var(--surface); color: var(--muted);
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.btn-bulk-cancel:hover:not(:disabled) { background: var(--cloud); }
.btn-bulk-cancel:disabled { opacity: .5; cursor: not-allowed; }
.btn-bulk-run {
  padding: 9px 24px; border: none; border-radius: 7px;
  background: var(--ink); color: #fff;
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.btn-bulk-run:hover:not(:disabled) { background: var(--vi); }
.btn-bulk-run:disabled { opacity: .5; cursor: not-allowed; }
.btn-bulk-run.bulk-run-done { background: #107c10; }
.btn-bulk-run.bulk-run-done:hover { background: #0d6b0d; }
.btn-bulk-log {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border: 1px solid var(--mist); border-radius: 7px;
  background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s, border-color .15s;
  margin-right: auto;
}
.btn-bulk-log:hover { background: var(--cloud); border-color: var(--silver); }

/* Sync modal — building chips */
.sync-building-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px; max-height: 130px; overflow-y: auto;
}
.sync-building-check {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 20px;
  border: 1px solid var(--mist); background: var(--surface);
  font-size: 12px; font-weight: 500; color: var(--muted);
  cursor: pointer; user-select: none;
  transition: border-color .15s, background .15s, color .15s;
}
.sync-building-check input[type="checkbox"] { display: none; }
.sync-building-check:has(input:checked) {
  border-color: var(--vi); background: rgba(9,114,206,.07); color: var(--vi);
}

/* Sync modal table cells */
.sync-cell-mono   { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--muted); }
.sync-cell-fields { font-size: 11px; color: var(--muted); }
.sync-no-mailbox   { color: #c68000; }
.sync-needs-update { color: #c68000; font-weight: 600; }
.sync-empty-prompt {
  padding: 24px 16px; text-align: center;
  font-size: 13px; color: var(--silver); font-style: italic;
}
