/* Live schedule board — dense ops tool, Excel-adjacent palette */
:root {
  --bg: #eef1f5;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #d7dee8;
  --line-strong: #b8c2d1;
  --accent: #1d4ed8;
  --accent-soft: #dbeafe;
  --danger: #b91c1c;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 10px;
  --cell-w: 24px;
  --cell-h: 40px;
  --label-w: 88px;
  --font: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
}

button, input { font: inherit; color: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

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

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px 10px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #75bd42 0 25%, #ee822f 25% 50%, #fff258 50% 75%, #5b9bd5 75% 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-sub {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.date-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.date-field input {
  width: 160px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  font-variant-numeric: tabular-nums;
}

.top-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease, transform .08s ease;
}

.btn:hover { background: var(--surface-2); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn.icon {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.primary:hover { background: #1e40af; }

.btn.ghost { background: transparent; }
.btn.ghost:hover { background: var(--surface-2); }
.btn.wide { width: 100%; margin-top: 8px; }
.btn.danger-text { color: var(--danger); }

/* Toolbar */
.toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.account-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--line);
  user-select: none;
}

.account-chip .swatch {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.account-chip.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.account-chip .label {
  font-weight: 600;
  font-size: 13px;
}

.tool-divider {
  width: 1px;
  height: 28px;
  background: var(--line-strong);
}

.tools { display: flex; gap: 8px; }

.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
}

.tool-btn.active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.tool-icon { font-size: 14px; opacity: .9; }

.hint {
  color: var(--muted);
  font-size: 12px;
  margin-left: auto;
}

.sync-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  white-space: nowrap;
}

.sync-status[data-kind="ok"] {
  color: #166534;
  background: #dcfce7;
  border-color: #86efac;
}

.sync-status[data-kind="pending"] {
  color: #92400e;
  background: #fef3c7;
  border-color: #fcd34d;
}

.sync-status[data-kind="err"] {
  color: #991b1b;
  background: #fee2e2;
  border-color: #fca5a5;
}

.sync-status[data-kind="off"] {
  color: #6b7280;
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.password-dialog {
  width: min(380px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(15,23,42,.18);
}

.password-dialog::backdrop {
  background: rgba(15, 23, 42, .45);
}

.password-error {
  margin: 0;
  color: #b91c1c;
  font-size: 12px;
}

/* Workspace: chart on top, panels below */
.workspace {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 18px 24px;
  flex: 1;
  min-height: 0;
}

.below-panels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.settings-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(86vh, 800px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(15,23,42,.18);
}

.settings-dialog::backdrop {
  background: rgba(15, 23, 42, .35);
}

.settings-dialog .dialog-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: min(86vh, 800px);
  overflow: auto;
}

.settings-dialog .dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.settings-dialog .dialog-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.settings-dialog .panel-card h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #475569;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 720px) {
  .settings-grid { grid-template-columns: 1fr; }
}

.grid-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: fit-content;
}

.grid-scroll {
  overflow: auto;
  flex: 1;
  max-height: calc(100vh - 230px);
  min-height: 220px;
}

.grid {
  display: grid;
  grid-template-columns: var(--label-w) repeat(var(--cols), var(--cell-w));
  width: max-content;
  min-width: 100%;
  user-select: none;
}

/* Sticky header row */
.grid .hour-head {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #e8eef7;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.grid .hour-head.hour-start {
  border-left: 1px solid var(--line-strong);
}

.grid .corner {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 6;
  background: #e8eef7;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.grid .host-label {
  position: sticky;
  left: 0;
  z-index: 4;
  background: var(--surface-2);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: var(--cell-h);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  padding: 0 4px;
  cursor: default;
}

.grid .host-label.has-shift {
  background: #e8f0fa;
}

.grid .host-label .host-short {
  min-width: 1.1em;
  text-align: center;
  cursor: grab;
}

.grid .host-label small {
  font-weight: 500;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  min-width: 1.6em;
  text-align: right;
  line-height: 1;
}

.grid .host-label .shift-wrap {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid .host-label .shift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 6px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
  font-family: var(--font);
  box-sizing: border-box;
  vertical-align: middle;
}

/* 看板只读班次标签：与按钮同一套居中 */
.grid .host-label .shift-btn.shift-tag {
  cursor: default;
  user-select: none;
}

.grid .host-label .shift-btn.is-set {
  color: #1e3a5f;
  background: #dce8f6;
  border-color: #8fadcf;
}

.grid .host-label .shift-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.shift-menu {
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  min-width: 128px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .16);
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* display:flex 会盖掉 [hidden]，必须显式压回去 */
.shift-menu[hidden] {
  display: none !important;
}

.shift-menu-item {
  appearance: none;
  border: none;
  background: transparent;
  text-align: left;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  white-space: nowrap;
  font-family: var(--font);
}

.shift-menu-item:hover {
  background: #eef2f7;
}

.shift-menu-item.is-active {
  background: #dce8f6;
  color: #1e3a5f;
}

.grid .cell {
  height: var(--cell-h);
  border-right: 1px solid #e6ebf2;
  border-bottom: 1px solid var(--line);
  background: #fafbfd;
  position: relative;
  cursor: crosshair;
}

.grid .cell.hour-start { border-left: 1px solid var(--line-strong); }
.grid .cell.quarter:not(.hour-start) { background: #f3f6fa; }

/* 班次上班时段浅底 */
.grid .cell.in-shift {
  background: #dce8f6;
}
.grid .cell.quarter.in-shift:not(.hour-start) {
  background: #d5e3f4;
}
.grid .cell.shift-start {
  border-left: 2px solid #8fadcf;
}
.grid .cell.shift-end {
  border-right: 2px solid #8fadcf;
}

/* 休息：整行锁定，底色略亮但不刺眼 */
.grid .cell.is-rest,
.grid .cell.is-rest.filled {
  background: #e8ebef;
  cursor: not-allowed;
}
.grid .cell.quarter.is-rest:not(.hour-start) {
  background: #e1e5ea;
}
.grid .cell.is-rest .fill {
  opacity: 0.35;
  filter: grayscale(0.35);
}
.grid .host-label.is-rest {
  background: #e8ebef;
}
.grid .host-label .shift-btn.is-rest {
  color: #6b7280;
  background: #e5e7eb;
  border-color: #9ca3af;
}

.shift-menu-item.is-rest {
  color: #6b7280;
  font-weight: 700;
}

.shift-chip.is-rest {
  color: #6b7280;
  background: #e5e7eb;
  border-color: #d1d5db;
}

.stat-row.is-rest {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.grid-section-label {
  position: sticky;
  left: 0;
  z-index: 3;
  grid-column: 1 / -1;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line-strong);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.grid .cell.is-assistant {
  cursor: default;
}

.grid .cell.is-assistant .fill {
  opacity: 0.82;
}

/* 同时跟播 2 人：上下半格 */
.grid .cell .fill.fill-part {
  position: absolute;
  left: 1px;
  right: 1px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.grid .cell .fill.fill-part.n-1 {
  top: 1px;
  bottom: 1px;
}

.grid .cell .fill.fill-part.n-2.fill-part-0 {
  top: 1px;
  height: calc(50% - 2px);
  border-bottom: 1px solid rgba(255,255,255,.55);
}

.grid .cell .fill.fill-part.n-2.fill-part-1 {
  top: 50%;
  bottom: 1px;
}

.grid .cell.is-assistant .host-short {
  color: #64748b;
}

.grid .host-label.is-assistant {
  background: #f8fafc;
}

.grid .host-label.is-assistant .host-short {
  color: #64748b;
}

.stat-slot.is-rest {
  background: #e8ebef;
  border-color: #e5e7eb;
}

/* 账号冲突 */
.grid .cell.conflict .fill {
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08), 0 0 0 2px #dc2626;
  z-index: 3;
}

.grid .cell.conflict::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #dc2626;
  pointer-events: none;
  z-index: 4;
}

.conflict-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 8px 12px;
  background: #fef2f2;
  border-top: 1px solid #fecaca;
  color: #991b1b;
  font-size: 12px;
}

.conflict-bar[hidden] {
  display: none !important;
}

.conflict-bar strong {
  font-weight: 700;
  background: #dc2626;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
}

.conflict-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 2px 10px;
  color: #7f1d1d;
  font-weight: 600;
}

.conflict-item i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}

.grid .cell.filled {
  cursor: pointer;
}

.grid .cell .fill {
  position: absolute;
  inset: 1px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(0,0,0,.72);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  z-index: 1;
}

.grid .cell .blk-label {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(0,0,0,.78);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 0 2px rgba(255,255,255,.5);
}

.grid .cell.selected .fill {
  outline: 2px solid #111827;
  outline-offset: 0;
  z-index: 2;
}

.grid .cell.selected::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px #111827;
  pointer-events: none;
  z-index: 3;
}

.grid .cell.block-end .fill {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.grid .cell.block-start .fill {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.grid .cell.painting {
  outline: 1px dashed rgba(29, 78, 216, .55);
  outline-offset: -1px;
}

.grid .cell.same-highlight .fill {
  filter: brightness(1.05);
  box-shadow: inset 0 0 0 2px rgba(17, 24, 39, .35);
}

/* Legend / meta */
.legend-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.legend-item .swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.day-meta {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* Panels under the chart */
.panel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.panel-card h2 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #475569;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid #e8eef6;
}

.stat-row .name {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.shift-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #1e3a5f;
  background: #dce8f6;
  border: 1px solid #b7cce4;
  border-radius: 999px;
  padding: 1px 8px;
  white-space: nowrap;
}

.stat-row .hours {
  font-family: var(--mono);
  font-size: 12px;
  color: #334155;
  white-space: nowrap;
  margin-left: auto;
}

.stat-row .hours b {
  font-size: 15px;
  color: var(--ink);
}

.stat-break {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
}

.stat-slots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin-top: 2px;
}

.stat-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  font-variant-numeric: tabular-nums;
  padding: 3px 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eef2f7;
}

.stat-slot .dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.stat-slot .range {
  font-family: var(--mono);
  font-weight: 600;
  color: #1f2937;
}

.stat-slot .acc {
  color: var(--muted);
}

.stat-slot .dur {
  margin-left: auto;
  font-weight: 600;
  color: #475569;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #475569;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
}

.stat-pill i {
  width: 8px; height: 8px; border-radius: 2px; display: inline-block;
}

.host-list, .account-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.host-row, .account-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.host-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.host-field-short {
  flex: 0 0 64px;
}

.host-field > span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.host-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid transparent;
  background: #fff;
  padding: 4px 6px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 13px;
}

.host-field-short input {
  text-align: center;
  letter-spacing: 0.04em;
}

.host-row input:hover {
  border-color: var(--line);
}

.host-row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.host-row .mini, .account-row .mini {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}

.host-row .mini:hover, .account-row .mini:hover {
  background: #e8eef6;
  color: var(--ink);
}

.account-row .swatch {
  width: 14px; height: 14px; border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.account-row .name { flex: 1; font-weight: 600; }
.account-row input[type="color"] {
  width: 28px; height: 22px; border: none; padding: 0; background: none; cursor: pointer;
}

/* Dialog */
dialog {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(15,23,42,.18);
  width: min(420px, calc(100vw - 32px));
}

dialog::backdrop { background: rgba(15, 23, 42, .35); }

.dialog-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dialog-body h2 { margin: 0; font-size: 16px; }
.dialog-sub { margin: 0; color: var(--muted); font-size: 12px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.field input[type="date"] {
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* Empty / weekend tint */
.grid .host-label.weekend { background: #f3f4f6; }
