:root {
  color-scheme: light;
  --ink: #1c212b;
  --quiet: #68727f;
  --faint: #929ba7;
  --paper: #f6f7f9;
  --surface: #ffffff;
  --raised: #fbfcfc;
  --line: rgba(28, 33, 43, 0.09);
  --line-strong: rgba(28, 33, 43, 0.16);
  --teal: #0a7d78;
  --coral: #db483d;
  --plum: #613875;
  --gold: #b8791f;
  --green: #28804c;
  --shadow: 0 1px 2px rgba(28, 33, 43, 0.04), 0 16px 44px rgba(28, 33, 43, 0.08);
  --radius: 10px;
  --topbar-bg: rgba(246, 247, 249, 0.88);
  --teal-soft: rgba(10, 125, 120, 0.10);
  --teal-soft-2: rgba(10, 125, 120, 0.09);
  --teal-border: rgba(10, 125, 120, 0.22);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Segoe UI", Meiryo, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--topbar-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.app-brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy small {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.app-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 52px;
  flex: 1;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.6fr);
  gap: 18px;
  align-items: start;
}

.participant-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 14px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-body {
  padding: 18px;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-subtitle {
  margin: 4px 0 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
}

.muted {
  color: var(--quiet);
}

.small {
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 850;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--raised);
  color: var(--ink);
  padding: 10px 12px;
  outline: 0;
}

.textarea {
  min-height: 92px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(10, 125, 120, 0.48);
  box-shadow: 0 0 0 4px rgba(10, 125, 120, 0.10);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.primary-button,
.secondary-button,
.ghost-button,
.danger-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
}

.primary-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 125, 120, 0.18);
}

.secondary-button {
  background: var(--teal-soft-2);
  color: var(--teal);
  border-color: var(--teal-border);
}

.ghost-button {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.danger-button {
  background: rgba(219, 72, 61, 0.09);
  color: var(--coral);
  border-color: rgba(219, 72, 61, 0.20);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.chip.gold {
  background: rgba(184, 121, 31, 0.12);
  color: var(--gold);
}

.chip.coral {
  background: rgba(219, 72, 61, 0.11);
  color: var(--coral);
}

.status-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.status-card.ok {
  border-color: rgba(40, 128, 76, 0.20);
  background: rgba(40, 128, 76, 0.07);
}

.status-card.error {
  border-color: rgba(219, 72, 61, 0.22);
  background: rgba(219, 72, 61, 0.07);
}

.status-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.status-card.ok .status-icon {
  background: rgba(40, 128, 76, 0.12);
  color: var(--green);
}

.status-card.error .status-icon {
  background: rgba(219, 72, 61, 0.12);
  color: var(--coral);
}

.status-card h3 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 900;
}

.status-card p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
}

.empty-state {
  padding: 26px 18px;
  text-align: center;
  color: var(--quiet);
}

.empty-state strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.event-list,
.guest-list,
.invite-list,
.recent-list {
  display: grid;
  gap: 8px;
}

.list-row {
  width: 100%;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--raised);
  padding: 10px;
  color: var(--ink);
  text-align: left;
}

.list-row.active {
  border-color: rgba(10, 125, 120, 0.36);
  background: rgba(10, 125, 120, 0.06);
}

.row-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.row-main {
  min-width: 0;
}

.row-title {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-meta {
  display: block;
  overflow: hidden;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--raised);
}

.metric .label {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 850;
}

.metric .value {
  margin-top: 4px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.segment {
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--raised);
  color: var(--quiet);
  font-weight: 900;
}

.segment[aria-pressed="true"] {
  border-color: rgba(10, 125, 120, 0.38);
  background: var(--teal);
  color: #fff;
}

.answer-attending[aria-pressed="true"] { background: var(--green); border-color: var(--green); }
.answer-declined[aria-pressed="true"] { background: var(--coral); border-color: var(--coral); }
.answer-pending[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); }

.design-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.design-option {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--raised);
  padding: 10px;
  text-align: left;
}

.design-option[aria-pressed="true"] {
  border-color: rgba(10, 125, 120, 0.46);
  box-shadow: inset 0 0 0 1px rgba(10, 125, 120, 0.28);
}

.design-swatch {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}

.design-swatch span {
  height: 8px;
  border-radius: 99px;
}

.design-swatch span:nth-child(1) { width: 38px; }
.design-swatch span:nth-child(2) { width: 24px; }
.design-swatch span:nth-child(3) { width: 14px; }

.invite-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* 招待状ヒーローは「紙の招待状」を意図した固定配色。ナイト以外は常に
   明るい紙背景なので、テーマに依存せず濃色の文字を固定する。 */
.invite-hero.clean {
  background: linear-gradient(135deg, #effbfa, #ffffff);
  color: #1c212b;
}

.invite-hero.bloom {
  background: linear-gradient(135deg, #fff0ec, #fff9eb);
  color: #1c212b;
}

.invite-hero.formal {
  background: linear-gradient(180deg, #ffffff, #f7f4fb);
  color: #1c212b;
}

.invite-hero.night {
  background: linear-gradient(135deg, #171b25, #2d263a);
  color: #fff;
}

.invite-hero::before,
.invite-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.invite-hero.clean::before {
  inset: 20px;
  background: repeating-linear-gradient(180deg, rgba(10, 125, 120, 0.06) 0 1px, transparent 1px 28px);
}

.invite-hero.bloom::before {
  right: -42px;
  top: -40px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  border: 32px solid rgba(219, 72, 61, 0.10);
}

.invite-hero.formal::before {
  inset: 12px;
  border: 1px solid rgba(97, 56, 117, 0.20);
  border-radius: 10px;
}

.invite-hero.night::before {
  right: 24px;
  top: 70px;
  width: 250px;
  height: 44px;
  border-radius: 999px;
  background: rgba(55, 78, 110, 0.30);
  transform: rotate(-7deg);
}

.invite-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.invite-hero.night .hero-chip {
  background: rgba(255, 255, 255, 0.10);
  color: #d79a2a;
}

.hero-kicker {
  margin-left: auto;
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 900;
}

.invite-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.13;
  font-weight: 950;
  letter-spacing: 0;
}

.invite-purpose {
  max-width: 52em;
  margin: -8px 0 0;
  color: currentColor;
  opacity: 0.72;
  font-weight: 700;
}

.accent-bars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.accent-bars span {
  height: 8px;
  border-radius: 99px;
}

.accent-bars span:nth-child(1) { width: min(520px, 58%); }
.accent-bars span:nth-child(2) { width: 140px; }
.accent-bars span:nth-child(3) { width: 70px; opacity: 0.60; }

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-info {
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.66);
}

.invite-hero.night .hero-info {
  background: rgba(255, 255, 255, 0.08);
}

.hero-info .icon {
  color: var(--teal);
  font-weight: 950;
}

.invite-hero.night .hero-info .icon {
  color: #d79a2a;
}

.hero-info strong {
  display: block;
  margin: 7px 0 4px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.22;
  font-weight: 950;
}

.hero-info span {
  color: currentColor;
  opacity: 0.68;
  font-size: 13px;
  font-weight: 850;
}

.guest-pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: currentColor;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.answer-panel {
  position: sticky;
  top: 92px;
}

.copy-code {
  overflow-wrap: anywhere;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--raised);
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.table-like {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(90px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: var(--surface);
}

.table-row.header {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 900;
  background: var(--raised);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(420px, calc(100% - 36px));
  padding: 13px 15px;
  border: 1px solid rgba(10, 125, 120, 0.20);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .workspace-grid,
  .participant-grid {
    grid-template-columns: 1fr;
  }

  .answer-panel {
    position: static;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .app-main {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .form-grid,
  .design-picker,
  .hero-info-grid,
  .segmented {
    grid-template-columns: 1fr;
  }

  .invite-hero {
    min-height: 0;
    padding: 20px;
  }

  .invite-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row.header {
    display: none;
  }
}

/* =========================================================
   Dark theme — system連動（data-theme未指定時）＋手動トグル
   ========================================================= */
:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eef1f6;
  --quiet: #9aa6b4;
  --faint: #6f7a88;
  --paper: #0e1218;
  --surface: #161b22;
  --raised: #1d232c;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --teal: #2ec4bc;
  --coral: #f26a5f;
  --plum: #b18ccb;
  --gold: #e0a53a;
  --green: #4bc47e;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.42), 0 18px 48px rgba(0, 0, 0, 0.52);
  --topbar-bg: rgba(14, 18, 24, 0.82);
  --teal-soft: rgba(46, 196, 188, 0.16);
  --teal-soft-2: rgba(46, 196, 188, 0.14);
  --teal-border: rgba(46, 196, 188, 0.30);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ink: #eef1f6;
    --quiet: #9aa6b4;
    --faint: #6f7a88;
    --paper: #0e1218;
    --surface: #161b22;
    --raised: #1d232c;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.20);
    --teal: #2ec4bc;
    --coral: #f26a5f;
    --plum: #b18ccb;
    --gold: #e0a53a;
    --green: #4bc47e;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.42), 0 18px 48px rgba(0, 0, 0, 0.52);
    --topbar-bg: rgba(14, 18, 24, 0.82);
    --teal-soft: rgba(46, 196, 188, 0.16);
    --teal-soft-2: rgba(46, 196, 188, 0.14);
    --teal-border: rgba(46, 196, 188, 0.30);
  }
}

/* =========================================================
   マイクロインタラクション & トランジション
   ========================================================= */
.primary-button,
.secondary-button,
.ghost-button,
.danger-button,
.list-row,
.segment,
.design-option,
.chip,
.input,
.select,
.textarea {
  transition: transform 0.12s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.primary-button:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(10, 125, 120, 0.26); }
.secondary-button:hover,
.ghost-button:hover,
.danger-button:hover { transform: translateY(-1px); }
.primary-button:active,
.secondary-button:active,
.ghost-button:active,
.danger-button:active { transform: translateY(0); }
button:disabled:hover { transform: none; box-shadow: none; }

.list-row:hover { border-color: var(--line-strong); background: var(--surface); }
.design-option:hover,
.segment:hover { border-color: var(--line-strong); }

/* =========================================================
   フォーカスの可視化（キーボード操作）
   ========================================================= */
a:focus-visible,
button:focus-visible,
.list-row:focus-visible,
.segment:focus-visible,
.design-option:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* =========================================================
   トースト表示のアニメーション（.hidden で display:none されても
   トーストだけはレイアウトを保持してフェード／スライドする）
   ========================================================= */
.toast {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.toast.hidden {
  display: flex !important;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.toast:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================
   ローディングスピナー（.status-icon.spinner）
   ========================================================= */
.spinner {
  color: transparent !important;
  position: relative;
}
.spinner::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2.5px solid var(--teal);
  border-top-color: transparent;
  animation: kn-spin 0.8s linear infinite;
}
@keyframes kn-spin { to { transform: rotate(360deg); } }

/* =========================================================
   PWA インストール／テーマトグル ボタン
   ========================================================= */
.icon-button {
  width: 44px;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
}

/* =========================================================
   モーション低減設定の尊重
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .toast { transition: none; }
}

/* =========================================================
   当日ゲーム（ビンゴ）＋スケジュール
   ========================================================= */
.drawn-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.drawn-chip {
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--raised);
  border: 1px solid var(--line);
  font-weight: 900;
}

.drawn-chip.latest {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: scale(1.06);
}

.bingo-head,
.bingo-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  max-width: 380px;
}

.bingo-head {
  margin-bottom: 7px;
}

.bingo-head span {
  text-align: center;
  font-weight: 950;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.bingo-cell {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--raised);
  border: 1px solid var(--line);
  font-size: clamp(16px, 4.5vw, 20px);
  font-weight: 950;
  color: var(--ink);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.bingo-cell.marked {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.bingo-cell.free {
  background: rgba(184, 121, 31, 0.16);
  color: var(--gold);
  font-size: 12px;
}

.bingo-banner {
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.schedule-list {
  display: grid;
  gap: 8px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--raised);
}

.schedule-time {
  font-weight: 950;
  color: var(--teal);
}

.schedule-title {
  display: block;
  font-weight: 900;
  color: var(--ink);
}

.schedule-memo {
  display: block;
  margin-top: 2px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
}

.daytabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 10px;
  background: var(--raised);
  border: 1px solid var(--line);
}

.daytab {
  min-height: 38px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--quiet);
  font-weight: 900;
}

.daytab[aria-pressed="true"] {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
