:root {
  --schedule-bg: #eef3f8;
  --schedule-bg-deep: #dce5f1;
  --schedule-surface: rgba(255, 255, 255, 0.98);
  --schedule-surface-strong: #ffffff;
  --schedule-surface-soft: #f5f8fd;
  --schedule-surface-warm: #fff8f0;
  --schedule-line: rgba(111, 133, 166, 0.26);
  --schedule-line-strong: rgba(64, 86, 122, 0.24);
  --schedule-text: #18253b;
  --schedule-muted: #5c6c84;
  --schedule-primary: #225fd1;
  --schedule-primary-strong: #173d8b;
  --schedule-primary-soft: rgba(34, 95, 209, 0.1);
  --schedule-navy: #0e2344;
  --schedule-navy-soft: #1d355d;
  --schedule-accent: #cb6e2f;
  --schedule-accent-soft: rgba(203, 110, 47, 0.12);
  --schedule-berry: #b55466;
  --schedule-berry-soft: rgba(181, 84, 102, 0.1);
  --schedule-ok: #0b7a67;
  --schedule-ok-soft: rgba(11, 122, 103, 0.12);
  --schedule-danger: #a33830;
  --schedule-danger-soft: rgba(163, 56, 48, 0.12);
  --schedule-shadow-lg: 0 24px 54px rgba(17, 37, 68, 0.1);
  --schedule-shadow-md: 0 14px 30px rgba(17, 37, 68, 0.07);
  --schedule-shadow-sm: 0 8px 16px rgba(17, 37, 68, 0.05);
  --schedule-radius-xl: 32px;
  --schedule-radius-lg: 24px;
  --schedule-radius-md: 18px;
  --schedule-radius-sm: 14px;
  --schedule-container: 1280px;
  --schedule-font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --schedule-font-heading: "Zen Kaku Gothic New", "BIZ UDPGothic", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

body.schedule-page {
  margin: 0;
  font-family: var(--schedule-font-body);
  color: var(--schedule-text);
  background:
    radial-gradient(780px 420px at 0% 0%, rgba(58, 116, 255, 0.08) 0%, rgba(58, 116, 255, 0) 76%),
    radial-gradient(820px 440px at 100% 8%, rgba(203, 110, 47, 0.08) 0%, rgba(203, 110, 47, 0) 72%),
    linear-gradient(180deg, #f8fbff 0%, var(--schedule-bg) 46%, #edf2f7 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.schedule-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 40, 72, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 40, 72, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

body.schedule-page a {
  color: inherit;
  text-underline-offset: 3px;
}

body.schedule-page button,
body.schedule-page input,
body.schedule-page select,
body.schedule-page textarea {
  font: inherit;
}

body.schedule-page :focus-visible {
  outline: 3px solid rgba(34, 95, 209, 0.26);
  outline-offset: 3px;
}

.schedule-shell {
  min-height: 100vh;
}

.schedule-container {
  width: min(var(--schedule-container), calc(100% - 32px));
  margin-inline: auto;
}

.schedule-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 25, 47, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.18);
}

.schedule-topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.schedule-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.schedule-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f5f8ff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.schedule-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #4d93ff 0%, #2157b3 100%);
  font-size: 0.82rem;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.schedule-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.schedule-nav a {
  color: rgba(223, 235, 255, 0.8);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.schedule-nav a:hover {
  color: #ffffff;
}

.schedule-topbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #f8fbff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.schedule-topbar-button:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(191, 219, 254, 0.55);
  transform: translateY(-1px);
}

.schedule-main {
  padding-bottom: 80px;
}

.schedule-hero {
  padding: clamp(34px, 6vw, 68px) 0 26px;
}

.schedule-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.schedule-hero-copy,
.schedule-hero-card,
.schedule-panel,
.schedule-summary-card,
.schedule-phase-card,
.schedule-method-card,
.schedule-empty,
.schedule-note-card {
  position: relative;
  border: 1px solid var(--schedule-line);
  border-radius: var(--schedule-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(248, 251, 255, 0.98) 100%);
  box-shadow: var(--schedule-shadow-md);
  overflow: hidden;
}

.schedule-hero-copy,
.schedule-hero-card,
.schedule-panel {
  backdrop-filter: blur(10px);
}

.schedule-hero-copy {
  padding: clamp(30px, 4vw, 44px);
  background:
    radial-gradient(540px 280px at 100% 0%, rgba(34, 95, 209, 0.11) 0%, rgba(34, 95, 209, 0) 72%),
    radial-gradient(420px 240px at 0% 100%, rgba(203, 110, 47, 0.08) 0%, rgba(203, 110, 47, 0) 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.995) 0%, rgba(246, 249, 255, 0.98) 100%);
}

.schedule-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.schedule-hero-main {
  min-width: 0;
  display: grid;
  align-content: start;
}

.schedule-hero-side {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.schedule-hero-copy::after,
.schedule-hero-card::after,
.schedule-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.schedule-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(34, 95, 209, 0.11) 0%, rgba(34, 95, 209, 0.03) 100%);
  border: 1px solid rgba(34, 95, 209, 0.14);
  color: var(--schedule-primary-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-hero h1,
.schedule-hero h2,
.schedule-card-title,
.schedule-section-title,
.schedule-method-card h3,
.schedule-phase-name {
  margin: 0;
  line-height: 1.22;
  font-family: var(--schedule-font-heading);
  letter-spacing: -0.02em;
}

.schedule-hero h1 {
  margin-top: 18px;
  max-width: none;
  display: grid;
  gap: 6px;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 900;
}

.schedule-hero h1 > span {
  display: block;
}

.schedule-hero h1 > span:last-child {
  color: var(--schedule-primary-strong);
  text-wrap: balance;
}

.schedule-hero-copy p {
  margin: 16px 0 0;
  max-width: 60ch;
  color: var(--schedule-muted);
  font-size: 1rem;
}

.schedule-hero-lead {
  font-size: 1.08rem;
  line-height: 1.95;
}

.schedule-hero-pill-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.schedule-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(133, 155, 190, 0.22);
  color: var(--schedule-text);
  font-size: 0.83rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 37, 68, 0.04);
}

.schedule-hero-support {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(133, 155, 190, 0.18);
}

.schedule-hero-proof-card {
  position: relative;
  height: 100%;
  padding: 22px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(133, 155, 190, 0.22);
  background:
    radial-gradient(260px 180px at 100% 0%, rgba(23, 61, 139, 0.11) 0%, rgba(23, 61, 139, 0) 72%),
    radial-gradient(220px 160px at 0% 100%, rgba(203, 110, 47, 0.1) 0%, rgba(203, 110, 47, 0) 74%),
    linear-gradient(180deg, rgba(244, 248, 255, 0.97) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 16px 34px rgba(17, 37, 68, 0.08);
}

.schedule-hero-proof-card h2 {
  margin-top: 14px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--schedule-navy);
  line-height: 1.38;
  font-family: var(--schedule-font-heading);
}

.schedule-hero-proof-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.schedule-hero-proof-list li {
  padding: 12px 0 0;
  border-top: 1px solid rgba(133, 155, 190, 0.16);
}

.schedule-hero-proof-list strong {
  display: block;
  color: var(--schedule-text);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.5;
}

.schedule-hero-proof-list p {
  margin: 5px 0 0;
  max-width: none;
  color: var(--schedule-muted);
  font-size: 0.85rem;
  line-height: 1.68;
}

.schedule-hero-proof-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.schedule-hero-proof-band span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(133, 155, 190, 0.18);
  color: var(--schedule-primary-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.schedule-hero-support {
  padding-top: 28px;
}

.schedule-page-map {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(133, 155, 190, 0.18);
  display: grid;
  gap: 18px;
}

.schedule-page-map-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.schedule-page-map-head p {
  margin: 0;
  max-width: 70ch;
  color: var(--schedule-muted);
  font-size: 0.92rem;
  line-height: 1.78;
}

.schedule-page-map-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.schedule-page-map-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(133, 155, 190, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 24px rgba(17, 37, 68, 0.05);
}

.schedule-page-map-item[data-tone="profile"] {
  background:
    radial-gradient(160px 110px at 100% 0%, rgba(34, 95, 209, 0.1) 0%, rgba(34, 95, 209, 0) 76%),
    rgba(255, 255, 255, 0.86);
}

.schedule-page-map-item[data-tone="dashboard"] {
  background:
    radial-gradient(160px 110px at 100% 0%, rgba(11, 122, 103, 0.1) 0%, rgba(11, 122, 103, 0) 76%),
    rgba(255, 255, 255, 0.86);
}

.schedule-page-map-item[data-tone="phase"] {
  background:
    radial-gradient(160px 110px at 100% 0%, rgba(80, 132, 235, 0.1) 0%, rgba(80, 132, 235, 0) 76%),
    rgba(255, 255, 255, 0.86);
}

.schedule-page-map-item[data-tone="weekly"] {
  background:
    radial-gradient(160px 110px at 100% 0%, rgba(203, 110, 47, 0.1) 0%, rgba(203, 110, 47, 0) 76%),
    rgba(255, 255, 255, 0.86);
}

.schedule-page-map-step {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 61, 139, 0.1);
  color: var(--schedule-primary-strong);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.schedule-page-map-item strong {
  display: block;
  color: var(--schedule-navy);
  font-size: 0.96rem;
  line-height: 1.5;
}

.schedule-page-map-item p {
  margin: 6px 0 0;
  color: var(--schedule-muted);
  font-size: 0.84rem;
  line-height: 1.68;
}

.schedule-support-hero {
  position: relative;
  border: 1px solid var(--schedule-line);
  border-radius: var(--schedule-radius-lg);
  background:
    radial-gradient(380px 220px at 100% 0%, rgba(34, 95, 209, 0.11) 0%, rgba(34, 95, 209, 0) 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.98) 100%);
  box-shadow: var(--schedule-shadow-md);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: end;
}

.schedule-support-hero-copy h1 {
  max-width: none;
  white-space: nowrap;
}

.schedule-support-hero-note {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(133, 155, 190, 0.18);
  background: rgba(247, 250, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.schedule-support-hero-note strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 95, 209, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.schedule-support-hero-note p {
  margin: 12px 0 0;
  color: var(--schedule-text);
  font-size: 0.98rem;
  line-height: 1.9;
}

.schedule-hero-card {
  padding: 24px 24px 26px;
  background:
    radial-gradient(320px 180px at 100% 0%, rgba(203, 110, 47, 0.12) 0%, rgba(203, 110, 47, 0) 70%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.94) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.schedule-hero-card h2 {
  font-size: 1.18rem;
  color: var(--schedule-navy);
}

.schedule-hero-card ul {
  margin: 16px 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 10px;
  color: var(--schedule-text);
}

.schedule-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  margin-top: 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(18, 40, 72, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.schedule-tab {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--schedule-primary-strong);
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.schedule-tab:hover {
  transform: translateY(-1px);
}

.schedule-tab.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
  color: var(--schedule-navy);
  box-shadow: 0 10px 22px rgba(17, 37, 68, 0.12);
}

.schedule-view[hidden] {
  display: none;
}

.schedule-grid {
  display: grid;
  gap: 22px;
}

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

.schedule-profile-accordion {
  padding: 0;
  margin-bottom: 24px;
}

.schedule-section-card {
  --section-accent: var(--schedule-primary);
  --section-accent-strong: var(--schedule-primary-strong);
  --section-soft: rgba(34, 95, 209, 0.1);
  --section-soft-strong: rgba(34, 95, 209, 0.18);
  --section-summary-bg: linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  --section-body-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.98) 100%);
  border-radius: 28px;
  border-color: rgba(119, 143, 180, 0.24);
}

.schedule-section-card-profile {
  --section-accent: #2960d1;
  --section-accent-strong: #173d8b;
  --section-soft: rgba(41, 96, 209, 0.11);
  --section-soft-strong: rgba(41, 96, 209, 0.2);
  --section-summary-bg:
    radial-gradient(320px 170px at 100% 0%, rgba(41, 96, 209, 0.14) 0%, rgba(41, 96, 209, 0) 78%),
    linear-gradient(180deg, rgba(242, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  --section-body-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
}

.schedule-section-card-dashboard {
  --section-accent: #0b7a67;
  --section-accent-strong: #0a6557;
  --section-soft: rgba(11, 122, 103, 0.1);
  --section-soft-strong: rgba(11, 122, 103, 0.18);
  --section-summary-bg:
    radial-gradient(320px 170px at 100% 0%, rgba(11, 122, 103, 0.13) 0%, rgba(11, 122, 103, 0) 78%),
    linear-gradient(180deg, rgba(243, 252, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  --section-body-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 250, 0.98) 100%);
}

.schedule-section-card-phase {
  --section-accent: #3e73de;
  --section-accent-strong: #214b9f;
  --section-soft: rgba(62, 115, 222, 0.11);
  --section-soft-strong: rgba(62, 115, 222, 0.18);
  --section-summary-bg:
    radial-gradient(320px 170px at 100% 0%, rgba(62, 115, 222, 0.12) 0%, rgba(62, 115, 222, 0) 78%),
    linear-gradient(180deg, rgba(243, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  --section-body-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.98) 100%);
}

.schedule-section-card-weekly {
  --section-accent: #cb6e2f;
  --section-accent-strong: #9f5322;
  --section-soft: rgba(203, 110, 47, 0.1);
  --section-soft-strong: rgba(203, 110, 47, 0.18);
  --section-summary-bg:
    radial-gradient(320px 170px at 100% 0%, rgba(203, 110, 47, 0.12) 0%, rgba(203, 110, 47, 0) 78%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  --section-body-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 246, 0.98) 100%);
}

.schedule-section-card-history {
  --section-accent: #6b5aa9;
  --section-accent-strong: #4f3d8c;
  --section-soft: rgba(107, 90, 169, 0.11);
  --section-soft-strong: rgba(107, 90, 169, 0.18);
  --section-summary-bg:
    radial-gradient(320px 170px at 100% 0%, rgba(107, 90, 169, 0.12) 0%, rgba(107, 90, 169, 0) 78%),
    linear-gradient(180deg, rgba(248, 245, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  --section-body-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 255, 0.98) 100%);
}

.schedule-section-accordion {
  padding: 0;
}

.schedule-section-accordion .schedule-accordion-body {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.schedule-accordion-summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  cursor: pointer;
}

.schedule-accordion-summary::-webkit-details-marker {
  display: none;
}

.schedule-accordion-summary::marker,
.schedule-form-accordion-summary::marker {
  content: "";
}

.schedule-accordion-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.schedule-accordion-heading {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.schedule-accordion-step {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--section-soft);
  color: var(--section-accent-strong);
  border: 1px solid var(--section-soft-strong);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.schedule-accordion-overline {
  display: inline-flex;
  align-items: center;
  color: var(--section-accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-accordion-meta {
  flex: 0 0 auto;
  align-self: center;
  max-width: 280px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--section-soft-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--section-accent-strong);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.schedule-accordion-title,
.schedule-accordion-subtitle {
  display: block;
}

.schedule-accordion-summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 95, 209, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.schedule-accordion[open] .schedule-accordion-summary::after {
  transform: rotate(45deg);
}

.schedule-section-card .schedule-accordion-summary {
  padding: 26px 28px 22px;
  background: var(--section-summary-bg);
}

.schedule-section-card .schedule-accordion-summary::after {
  background: var(--section-soft);
  color: var(--section-accent-strong);
}

.schedule-section-card .schedule-accordion-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--section-soft-strong);
  background: var(--section-body-bg);
}

.schedule-section-card[open] {
  box-shadow: 0 20px 40px rgba(17, 37, 68, 0.1);
}

.schedule-account-inline {
  display: grid;
  gap: 4px;
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: var(--schedule-radius-md);
  border: 1px solid rgba(133, 155, 190, 0.24);
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(34, 95, 209, 0.08) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.schedule-account-inline strong {
  color: var(--schedule-navy);
  font-size: 1rem;
}

.schedule-account-inline span {
  color: var(--schedule-muted);
  font-size: 0.88rem;
}

.schedule-accordion-body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(133, 155, 190, 0.2);
}

.schedule-panel {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.96) 100%);
}

.schedule-panel::before,
.schedule-summary-card::before,
.schedule-phase-card::before,
.schedule-note-card::before,
.schedule-method-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, rgba(34, 95, 209, 0.9) 0%, rgba(203, 110, 47, 0.7) 100%);
}

.schedule-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.schedule-card-title {
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  color: var(--schedule-navy);
  font-weight: 900;
  text-wrap: balance;
}

.schedule-card-subtitle,
.schedule-field-help,
.schedule-empty p,
.schedule-metric-note {
  margin: 6px 0 0;
  color: var(--schedule-muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.schedule-profile-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  border-radius: var(--schedule-radius-md);
  background:
    linear-gradient(180deg, rgba(239, 245, 255, 0.88) 0%, rgba(250, 252, 255, 0.95) 100%);
}

.schedule-profile-bar label,
.schedule-inline-field label,
.schedule-field label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--schedule-text);
  font-size: 0.9rem;
}

.schedule-profile-bar > label > span,
.schedule-field > span {
  letter-spacing: 0.01em;
}

.schedule-profile-bar select,
.schedule-profile-bar button,
.schedule-inline-field input,
.schedule-inline-field select,
.schedule-field input,
.schedule-field select,
.schedule-field textarea,
.schedule-task-controls select,
.schedule-extra-form select,
.schedule-extra-form input {
  min-height: 44px;
  border: 1px solid var(--schedule-line);
  border-radius: 14px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--schedule-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.schedule-profile-bar select:hover,
.schedule-inline-field input:hover,
.schedule-inline-field select:hover,
.schedule-field input:hover,
.schedule-field select:hover,
.schedule-field textarea:hover,
.schedule-task-controls select:hover,
.schedule-extra-form select:hover,
.schedule-extra-form input:hover {
  border-color: var(--schedule-line-strong);
}

.schedule-field textarea {
  min-height: 110px;
  padding: 12px 13px;
  resize: vertical;
}

.schedule-button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.schedule-button:hover {
  transform: translateY(-1px);
}

.schedule-button:active {
  transform: translateY(0);
}

.schedule-button-primary {
  background: linear-gradient(135deg, var(--schedule-primary) 0%, #204ba6 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(34, 95, 209, 0.22);
}

.schedule-button-secondary {
  background: rgba(34, 95, 209, 0.09);
  color: var(--schedule-primary-strong);
}

.schedule-button-danger {
  background: var(--schedule-danger-soft);
  color: var(--schedule-danger);
}

.schedule-button-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--schedule-text);
  border: 1px solid var(--schedule-line);
}

.schedule-button-small {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.84rem;
}

.schedule-setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.schedule-profile-form {
  width: min(100%, 920px);
  margin-inline: auto;
  padding-top: 20px;
  gap: 18px;
}

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

.schedule-form-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

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

.schedule-form-step {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  box-shadow: var(--schedule-shadow-sm);
}

.schedule-step-number {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--schedule-primary) 0%, #4f84eb 100%);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(34, 95, 209, 0.18);
}

.schedule-form-step-title {
  margin: 0;
  display: block;
  color: var(--schedule-navy);
  font-size: 1.08rem;
}

.schedule-form-step-desc {
  display: block;
  margin-top: 6px;
  color: var(--schedule-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.schedule-form-accordion {
  position: relative;
  border: 1px solid rgba(133, 155, 190, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  box-shadow: var(--schedule-shadow-sm);
  overflow: hidden;
}

.schedule-form-accordion::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(34, 95, 209, 0.9) 0%, rgba(203, 110, 47, 0.7) 100%);
}

.schedule-section-card-profile .schedule-account-inline {
  border-color: rgba(41, 96, 209, 0.18);
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(41, 96, 209, 0.1) 0%, rgba(41, 96, 209, 0) 76%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.schedule-section-card-profile .schedule-form-accordion {
  border-color: rgba(41, 96, 209, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 255, 0.98) 100%);
  box-shadow: 0 14px 26px rgba(17, 37, 68, 0.06);
}

.schedule-section-card-profile .schedule-form-accordion::before {
  height: 5px;
  background: linear-gradient(90deg, rgba(41, 96, 209, 0.94) 0%, rgba(98, 142, 231, 0.72) 100%);
}

.schedule-form-accordion-summary {
  list-style: none;
  display: block;
  padding: 20px 72px 20px 20px;
  cursor: pointer;
}

.schedule-form-accordion-summary::-webkit-details-marker {
  display: none;
}

.schedule-form-accordion-head {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.schedule-form-accordion-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.schedule-form-accordion-summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 95, 209, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.schedule-form-accordion[open] .schedule-form-accordion-summary::after {
  transform: rotate(45deg);
}

.schedule-form-accordion-body {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(133, 155, 190, 0.18);
}

.schedule-inline-notes {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.schedule-inline-notes p {
  margin: 0;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(18, 40, 72, 0.04);
  color: var(--schedule-muted);
  font-size: 0.9rem;
}

.schedule-inline-notes strong {
  color: var(--schedule-text);
}

.schedule-goal-forecast-slot {
  margin-top: 14px;
}

.schedule-goal-pace-slot {
  margin-top: 14px;
}

.schedule-goal-pace {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  background: linear-gradient(180deg, rgba(240, 247, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-goal-pace.is-empty {
  padding: 13px 14px;
  border-style: dashed;
  background: rgba(246, 250, 255, 0.9);
}

.schedule-goal-pace.is-empty p {
  margin: 0;
  color: var(--schedule-muted);
  font-size: 0.88rem;
}

.schedule-goal-pace-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.schedule-goal-pace-head h3 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--schedule-navy);
}

.schedule-goal-pace-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-goal-pace-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.schedule-goal-pace-item {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(133, 155, 190, 0.22);
  background: rgba(255, 255, 255, 0.94);
}

.schedule-goal-pace-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--schedule-muted);
}

.schedule-goal-pace-item strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.38rem, 2.6vw, 1.9rem);
  line-height: 1.1;
  color: var(--schedule-primary-strong);
}

.schedule-goal-pace-item p {
  margin: 8px 0 0;
  font-size: 0.84rem;
  color: var(--schedule-muted);
  line-height: 1.55;
}

.schedule-goal-forecast {
  margin-top: 0;
  overflow-x: auto;
}

.schedule-goal-forecast.is-empty {
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(133, 155, 190, 0.34);
  background: rgba(246, 250, 255, 0.9);
}

.schedule-goal-forecast.is-empty p {
  margin: 0;
  color: var(--schedule-muted);
  font-size: 0.88rem;
}

.schedule-goal-forecast-head {
  padding: 13px 14px;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(133, 155, 190, 0.24);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(238, 245, 255, 0.86) 0%, rgba(250, 253, 255, 0.96) 100%);
}

.schedule-goal-forecast-head h3 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--schedule-navy);
}

.schedule-goal-forecast-head p {
  margin: 6px 0 0;
  color: var(--schedule-muted);
  font-size: 0.84rem;
}

.schedule-goal-forecast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  border-top: 0;
  background: rgba(255, 255, 255, 0.95);
}

.schedule-goal-forecast-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid rgba(133, 155, 190, 0.24);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  background: #ffffff;
}

.schedule-goal-forecast-table th,
.schedule-goal-forecast-table td {
  border-bottom: 1px solid rgba(133, 155, 190, 0.18);
  padding: 9px 12px;
  font-size: 0.82rem;
  text-align: left;
  vertical-align: top;
}

.schedule-goal-forecast-table tr:last-child th,
.schedule-goal-forecast-table tr:last-child td {
  border-bottom: 0;
}

.schedule-goal-forecast-table th {
  width: 26%;
  color: var(--schedule-navy);
  font-weight: 800;
}

.schedule-goal-forecast-table td:nth-child(2) {
  width: 20%;
}

.schedule-goal-forecast-value {
  font-size: 0.93rem;
  font-weight: 900;
  color: var(--schedule-text);
  white-space: nowrap;
}

.schedule-goal-forecast-value.is-danger {
  color: var(--schedule-danger);
}

.schedule-goal-forecast-value.is-ok {
  color: var(--schedule-ok);
}

.schedule-form-actions {
  display: grid;
  gap: 10px;
}

.schedule-side-notes {
  align-content: start;
  padding-top: 20px;
}

.schedule-note-card {
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 255, 0.96) 100%);
}

.schedule-side-notes .schedule-note-card:nth-child(1) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(34, 95, 209, 0.08) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.schedule-side-notes .schedule-note-card:nth-child(2) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(203, 110, 47, 0.09) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.schedule-side-notes .schedule-note-card:nth-child(3) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(11, 122, 103, 0.08) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(241, 252, 249, 0.98) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.schedule-availability-table,
.schedule-board-table,
.schedule-coach-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.schedule-availability-table th,
.schedule-availability-table td,
.schedule-board-table th,
.schedule-board-table td,
.schedule-coach-table th,
.schedule-coach-table td {
  border-bottom: 1px solid rgba(133, 155, 190, 0.2);
  padding: 14px 12px;
  vertical-align: top;
  text-align: left;
}

.schedule-availability-table thead th,
.schedule-board-table thead th,
.schedule-coach-table thead th {
  color: var(--schedule-primary-strong);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(238, 244, 255, 0.92);
}

.schedule-availability-table thead th:first-child,
.schedule-board-table thead th:first-child,
.schedule-coach-table thead th:first-child {
  border-top-left-radius: 16px;
}

.schedule-availability-table thead th:last-child,
.schedule-board-table thead th:last-child,
.schedule-coach-table thead th:last-child {
  border-top-right-radius: 16px;
}

.schedule-availability-table tbody tr:last-child td,
.schedule-board-table tbody tr:last-child td,
.schedule-coach-table tbody tr:last-child td {
  border-bottom: 0;
}

.schedule-inline-field {
  display: inline-grid;
  gap: 6px;
}

.schedule-status-chip,
.schedule-badge,
.schedule-risk-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.schedule-status-chip {
  background: rgba(34, 95, 209, 0.1);
  color: var(--schedule-primary-strong);
}

.schedule-badge {
  background: rgba(203, 110, 47, 0.12);
  color: var(--schedule-accent);
}

.schedule-badge.is-soft {
  background: rgba(11, 122, 103, 0.12);
  color: var(--schedule-ok);
}

.schedule-badge.is-done {
  background: rgba(91, 105, 128, 0.14);
  color: var(--schedule-muted);
}

.schedule-risk-chip[data-risk="low"] {
  background: rgba(11, 122, 103, 0.12);
  color: var(--schedule-ok);
}

.schedule-risk-chip[data-risk="none"] {
  background: rgba(91, 105, 128, 0.14);
  color: var(--schedule-muted);
}

.schedule-risk-chip[data-risk="medium"] {
  background: rgba(203, 110, 47, 0.12);
  color: var(--schedule-accent);
}

.schedule-risk-chip[data-risk="high"] {
  background: rgba(163, 56, 48, 0.12);
  color: var(--schedule-danger);
}

.schedule-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.schedule-summary-grid,
.schedule-coach-summary {
  display: block;
}

.schedule-phase-grid {
  display: block;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 2px 10px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-gutter: stable both-edges;
}

.schedule-section-card-phase .schedule-phase-grid {
  padding: 6px 6px 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.78) 0%, rgba(249, 251, 255, 0.88) 100%);
  border: 1px solid rgba(62, 115, 222, 0.12);
}

.schedule-phase-grid::-webkit-scrollbar {
  height: 8px;
}

.schedule-phase-grid::-webkit-scrollbar-thumb {
  background: rgba(133, 155, 190, 0.34);
  border-radius: 999px;
}

.schedule-summary-card,
.schedule-phase-card,
.schedule-note-card,
.schedule-method-card {
  padding: 18px 18px 20px;
}

.schedule-summary-card {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(34, 95, 209, 0.08) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 255, 0.96) 100%);
}

.schedule-summary-card:nth-child(2) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(203, 110, 47, 0.08) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 250, 245, 0.96) 100%);
}

.schedule-summary-card:nth-child(3) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(11, 122, 103, 0.08) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 252, 249, 0.96) 100%);
}

.schedule-summary-card:nth-child(4) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(181, 84, 102, 0.08) 0%, rgba(181, 84, 102, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 246, 248, 0.96) 100%);
}

.schedule-summary-card strong,
.schedule-phase-card strong {
  display: block;
  color: var(--schedule-muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-summary-value {
  margin-top: 10px;
  font-size: clamp(1.48rem, 2.2vw, 1.9rem);
  font-weight: 900;
  color: var(--schedule-text);
  line-height: 1.15;
}

.schedule-summary-value.is-primary {
  color: var(--schedule-primary-strong);
}

.schedule-summary-value.is-danger {
  color: var(--schedule-danger);
}

.schedule-summary-value.is-ok {
  color: var(--schedule-ok);
}

.schedule-summary-layout {
  display: grid;
  gap: 14px;
}

.schedule-focus-layout {
  display: grid;
  gap: 16px;
}

.schedule-focus-lead {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  background:
    radial-gradient(220px 130px at 100% 0%, rgba(34, 95, 209, 0.1) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(244, 248, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-section-card-dashboard .schedule-focus-lead {
  border-color: rgba(11, 122, 103, 0.16);
  background:
    radial-gradient(220px 130px at 100% 0%, rgba(11, 122, 103, 0.1) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(243, 252, 249, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-lead h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--schedule-navy);
}

.schedule-focus-lead p {
  margin: 7px 0 0;
  font-size: 0.9rem;
  color: var(--schedule-muted);
  line-height: 1.7;
}

.schedule-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.schedule-focus-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(133, 155, 190, 0.22);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(17, 37, 68, 0.06);
}

.schedule-section-card-dashboard .schedule-focus-card,
.schedule-section-card-dashboard .schedule-focus-detail-card {
  box-shadow: 0 16px 28px rgba(17, 37, 68, 0.06);
}

.schedule-focus-card[data-tone="stage"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(34, 95, 209, 0.1) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-card[data-tone="progress"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(11, 122, 103, 0.1) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(242, 252, 248, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-card[data-tone="remaining"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(203, 110, 47, 0.1) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(23, 61, 139, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.schedule-focus-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.34rem, 2vw, 1.8rem);
  line-height: 1.3;
  color: var(--schedule-navy);
}

.schedule-focus-card p {
  margin: 8px 0 0;
  color: var(--schedule-text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.schedule-focus-meta {
  margin-top: 10px;
  color: var(--schedule-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.schedule-focus-progress {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 40, 72, 0.08);
  overflow: hidden;
}

.schedule-focus-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #19a974 0%, #74d9ae 100%);
}

.schedule-focus-message {
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(133, 155, 190, 0.22);
  background: rgba(255, 255, 255, 0.98);
}

.schedule-focus-message[data-tone="ok"] {
  background: rgba(242, 252, 248, 0.98);
}

.schedule-focus-message[data-tone="primary"] {
  background: rgba(241, 247, 255, 0.98);
}

.schedule-focus-message[data-tone="danger"] {
  background: rgba(255, 245, 244, 0.98);
}

.schedule-focus-message h4 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--schedule-navy);
}

.schedule-focus-message p {
  margin: 7px 0 0;
  color: var(--schedule-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.schedule-focus-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.schedule-focus-detail-card {
  border: 1px solid rgba(133, 155, 190, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(17, 37, 68, 0.06);
  overflow: hidden;
}

.schedule-focus-detail-card[data-tone="weak"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(181, 84, 102, 0.08) 0%, rgba(181, 84, 102, 0) 76%),
    linear-gradient(180deg, rgba(255, 247, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-detail-card[data-tone="review"],
.schedule-focus-detail-card[data-tone="danger"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(203, 110, 47, 0.08) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-detail-card[data-tone="next"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(34, 95, 209, 0.08) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(242, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-detail-card[data-tone="calm"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(11, 122, 103, 0.08) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(243, 252, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-focus-detail-summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
}

.schedule-focus-detail-summary::-webkit-details-marker {
  display: none;
}

.schedule-focus-detail-summary::marker {
  content: "";
}

.schedule-focus-detail-summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 61, 139, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.schedule-focus-detail-card[open] .schedule-focus-detail-summary::after {
  transform: rotate(45deg);
}

.schedule-focus-detail-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.schedule-focus-detail-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.schedule-focus-detail-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--schedule-navy);
}

.schedule-focus-detail-count {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(23, 61, 139, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.schedule-focus-detail-summary-text {
  color: var(--schedule-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.schedule-focus-detail-body {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(133, 155, 190, 0.16);
}

.schedule-focus-detail-list {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  display: grid;
  gap: 10px;
}

.schedule-focus-detail-item {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(133, 155, 190, 0.16);
}

.schedule-focus-detail-item-copy {
  display: grid;
  gap: 4px;
}

.schedule-focus-detail-item-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.schedule-focus-detail-item strong {
  color: var(--schedule-text);
  font-size: 0.9rem;
}

.schedule-focus-detail-item span {
  color: var(--schedule-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.schedule-focus-detail-item[data-tone="weak"] {
  background: rgba(255, 242, 246, 0.9);
}

.schedule-focus-detail-item[data-tone="danger"] {
  background: rgba(255, 243, 239, 0.92);
}

.schedule-focus-detail-item[data-tone="review"] {
  background: rgba(255, 249, 242, 0.92);
}

.schedule-focus-detail-item[data-tone="next"] {
  background: rgba(242, 247, 255, 0.92);
}

.schedule-focus-detail-empty {
  margin: 0;
  padding-top: 14px;
  color: var(--schedule-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.schedule-teacher-dashboard {
  display: grid;
  gap: 16px;
}

.schedule-teacher-dashboard-lead {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(34, 95, 209, 0.12) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-teacher-dashboard-lead h3 {
  margin: 0;
  color: var(--schedule-navy);
  font-size: 1.02rem;
}

.schedule-teacher-dashboard-lead p {
  margin: 7px 0 0;
  color: var(--schedule-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.schedule-teacher-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.schedule-teacher-snapshot-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(133, 155, 190, 0.22);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(17, 37, 68, 0.06);
}

.schedule-teacher-snapshot-card[data-tone="stage"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(34, 95, 209, 0.1) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-teacher-snapshot-card[data-tone="progress"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(11, 122, 103, 0.08) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(243, 252, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-teacher-snapshot-card[data-tone="remaining"],
.schedule-teacher-snapshot-card[data-tone="review"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(203, 110, 47, 0.09) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-teacher-snapshot-card[data-tone="danger"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(163, 56, 48, 0.08) 0%, rgba(163, 56, 48, 0) 76%),
    linear-gradient(180deg, rgba(255, 244, 243, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-teacher-snapshot-card[data-tone="calm"] {
  background:
    radial-gradient(170px 120px at 100% 0%, rgba(11, 122, 103, 0.08) 0%, rgba(11, 122, 103, 0) 76%),
    linear-gradient(180deg, rgba(243, 252, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.schedule-teacher-snapshot-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.24rem, 1.9vw, 1.66rem);
  line-height: 1.3;
  color: var(--schedule-navy);
}

.schedule-teacher-snapshot-card p {
  margin: 8px 0 0;
  color: var(--schedule-text);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.62;
}

.schedule-teacher-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.schedule-teacher-step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(133, 155, 190, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.schedule-teacher-step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--schedule-primary) 0%, #4f84eb 100%);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
}

.schedule-teacher-step-card h4 {
  margin: 0;
  color: var(--schedule-navy);
  font-size: 0.94rem;
}

.schedule-teacher-step-card p {
  margin: 5px 0 0;
  color: var(--schedule-muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.schedule-focus-details-grid-teacher {
  margin-top: 2px;
}

.schedule-summary-lead {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(133, 155, 190, 0.26);
  background: linear-gradient(180deg, rgba(238, 245, 255, 0.82) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.schedule-summary-lead h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--schedule-navy);
}

.schedule-summary-lead p {
  margin: 6px 0 0;
  font-size: 0.89rem;
  color: var(--schedule-muted);
}

.schedule-summary-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.schedule-summary-group {
  border: 1px solid rgba(133, 155, 190, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.schedule-summary-group-head {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(133, 155, 190, 0.2);
  background: rgba(242, 247, 255, 0.75);
}

.schedule-summary-group-head h4 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--schedule-primary-strong);
}

.schedule-summary-group-head p {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--schedule-muted);
}

.schedule-summary-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule-summary-table thead th {
  padding: 8px 12px;
  font-size: 0.72rem;
  color: var(--schedule-muted);
  background: rgba(247, 250, 255, 0.9);
  text-align: left;
  border-bottom: 1px solid rgba(133, 155, 190, 0.18);
  white-space: nowrap;
}

.schedule-summary-table tbody th,
.schedule-summary-table tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(133, 155, 190, 0.16);
  vertical-align: top;
  text-align: left;
  font-size: 0.82rem;
}

.schedule-summary-table tbody tr:last-child th,
.schedule-summary-table tbody tr:last-child td {
  border-bottom: 0;
}

.schedule-summary-table tbody th {
  width: 26%;
  font-weight: 800;
  color: var(--schedule-navy);
}

.schedule-summary-table-value {
  width: 24%;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--schedule-text);
  white-space: nowrap;
}

.schedule-summary-table-value.is-primary {
  color: var(--schedule-primary-strong);
}

.schedule-summary-table-value.is-danger {
  color: var(--schedule-danger);
}

.schedule-summary-table-value.is-ok {
  color: var(--schedule-ok);
}

.schedule-summary-footnote {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(248, 251, 255, 0.95);
  border: 1px dashed rgba(133, 155, 190, 0.3);
  color: var(--schedule-muted);
  font-size: 0.82rem;
}

.schedule-phase-flow {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  gap: 0;
  width: max-content;
  min-width: 100%;
  overflow: visible;
  padding: 2px 2px 0;
  scroll-snap-type: x mandatory;
}

.schedule-phase-card {
  flex: 0 0 260px;
  width: auto;
  scroll-snap-align: start;
  border: 0;
  box-shadow: 0 12px 24px rgba(17, 37, 68, 0.08);
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.98) 0%, rgba(233, 243, 255, 0.94) 100%);
}

.schedule-section-card-phase .schedule-phase-card {
  border: 1px solid rgba(133, 155, 190, 0.18);
}

.schedule-phase-card::before {
  content: none;
}

.schedule-phase-card::after {
  content: none;
}

.schedule-phase-card[data-order="1"] {
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98) 0%, rgba(221, 236, 255, 0.95) 100%);
}

.schedule-phase-card[data-order="2"] {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98) 0%, rgba(255, 238, 218, 0.95) 100%);
}

.schedule-phase-card[data-order="3"] {
  background: linear-gradient(180deg, rgba(235, 251, 247, 0.98) 0%, rgba(218, 245, 238, 0.95) 100%);
}

.schedule-phase-card[data-order="4"] {
  background: linear-gradient(180deg, rgba(241, 245, 255, 0.98) 0%, rgba(226, 234, 255, 0.95) 100%);
}

.schedule-phase-card[data-order="5"] {
  background: linear-gradient(180deg, rgba(246, 242, 255, 0.98) 0%, rgba(235, 227, 255, 0.95) 100%);
}

.schedule-phase-card[data-state="current"] {
  box-shadow: 0 16px 30px rgba(34, 95, 209, 0.18);
  filter: saturate(1.05);
}

.schedule-phase-card[data-state="done"] {
  box-shadow: 0 12px 26px rgba(11, 122, 103, 0.14);
}

.schedule-phase-card[data-state="skipped"] {
  opacity: 0.9;
  filter: grayscale(0.08);
}

.schedule-phase-connector {
  flex: 0 0 34px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
}

.schedule-phase-connector span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 95, 209, 0.12);
  color: var(--schedule-primary-strong);
  font-size: 0.88rem;
  font-weight: 900;
  transform: none;
}

.schedule-phase-top {
  display: grid;
  gap: 7px;
}

.schedule-phase-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.schedule-phase-index {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(23, 61, 139, 0.08);
  color: var(--schedule-primary-strong);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.schedule-status-chip-phase {
  min-height: 27px;
}

.schedule-status-chip-phase[data-state="done"] {
  background: rgba(11, 122, 103, 0.14);
  color: var(--schedule-ok);
}

.schedule-status-chip-phase[data-state="current"] {
  background: rgba(34, 95, 209, 0.14);
  color: var(--schedule-primary-strong);
}

.schedule-status-chip-phase[data-state="skipped"] {
  background: rgba(163, 56, 48, 0.14);
  color: var(--schedule-danger);
}

.schedule-phase-completion {
  color: var(--schedule-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.schedule-phase-name {
  margin-top: 10px;
  font-size: 1.06rem;
  color: var(--schedule-navy);
}

.schedule-phase-summary {
  margin: 8px 0 0;
  color: var(--schedule-muted);
  font-size: 0.9rem;
}

.schedule-phase-tracking {
  margin-top: 14px;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(133, 155, 190, 0.18);
}

.schedule-phase-tracking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.schedule-phase-tracking-head span {
  color: var(--schedule-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.schedule-phase-tracking-head strong {
  font-size: 0.78rem;
  color: var(--schedule-primary-strong);
  letter-spacing: 0.04em;
}

.schedule-phase-tracking p {
  margin: 8px 0 0;
  color: var(--schedule-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.schedule-phase-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.schedule-phase-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 61, 139, 0.08);
  color: var(--schedule-primary-strong);
}

.schedule-phase-chip span {
  font-size: 0.72rem;
  font-weight: 800;
}

.schedule-phase-chip strong {
  font-size: 0.78rem;
  color: var(--schedule-navy);
  letter-spacing: 0;
}

.schedule-phase-map {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.schedule-phase-map-row {
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.58);
}

.schedule-phase-map-row dt {
  color: var(--schedule-primary-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.schedule-phase-map-row dd {
  margin: 6px 0 0;
  color: var(--schedule-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.schedule-phase-footer {
  margin-top: 14px;
}

.schedule-phase-progress-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--schedule-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.schedule-phase-progress {
  margin-top: 8px;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 40, 72, 0.08);
  overflow: hidden;
}

.schedule-phase-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--schedule-primary) 0%, #6b94f1 100%);
}

.schedule-board-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.schedule-week-guide-card {
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.95) 100%);
  overflow: hidden;
}

.schedule-section-card-weekly .schedule-week-guide-card {
  border-color: rgba(203, 110, 47, 0.18);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(203, 110, 47, 0.09) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.97) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.schedule-week-guide-summary {
  list-style: none;
  position: relative;
  padding: 13px 48px 13px 16px;
  cursor: pointer;
  display: grid;
  gap: 3px;
}

.schedule-week-guide-summary::-webkit-details-marker {
  display: none;
}

.schedule-week-guide-summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 95, 209, 0.1);
  color: var(--schedule-primary-strong);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease;
}

.schedule-week-guide-card[open] .schedule-week-guide-summary::after {
  transform: rotate(45deg);
}

.schedule-week-guide-summary-title {
  font-size: 0.96rem;
  font-weight: 900;
  color: var(--schedule-navy);
}

.schedule-week-guide-summary-sub {
  color: var(--schedule-muted);
  font-size: 0.82rem;
}

.schedule-week-guide-body {
  border-top: 1px solid rgba(133, 155, 190, 0.18);
  padding: 12px 16px 14px;
}

.schedule-week-guide-steps {
  margin: 0;
  padding-left: 1.25em;
  color: var(--schedule-muted);
  display: grid;
  gap: 9px;
  font-size: 0.9rem;
}

.schedule-week-guide-steps li strong {
  color: var(--schedule-navy);
  font-size: 0.9rem;
}

.schedule-week-guide-steps li p {
  margin: 4px 0 0;
  line-height: 1.62;
}

.schedule-week-guide-emphasis {
  margin: 11px 0 0;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid rgba(34, 95, 209, 0.2);
  background: rgba(34, 95, 209, 0.06);
  color: var(--schedule-primary-strong);
  font-size: 0.86rem;
  line-height: 1.62;
}

.schedule-board-actions {
  display: flex;
  flex: 1 1 540px;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.schedule-section-card-weekly .schedule-board-toolbar {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(203, 110, 47, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.84) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.schedule-section-card-history .schedule-log-list {
  padding-top: 4px;
}

.schedule-week-shift-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.schedule-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(133, 155, 190, 0.22);
}

.schedule-view-toggle-button {
  border: 0;
  background: transparent;
  color: var(--schedule-muted);
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.schedule-view-toggle-button.is-active {
  background: linear-gradient(135deg, rgba(34, 95, 209, 0.14) 0%, rgba(34, 95, 209, 0.06) 100%);
  color: var(--schedule-primary-strong);
}

.schedule-board-shell {
  overflow: visible;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(236, 243, 255, 0.92) 0%, rgba(248, 251, 255, 0.98) 100%);
  border: 1px solid rgba(133, 155, 190, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.schedule-board-shell-spaced {
  margin-top: 16px;
}

.schedule-week-board {
  display: grid;
  gap: 18px;
}

.schedule-day-board {
  border-radius: 24px;
  border: 1px solid rgba(133, 155, 190, 0.22);
  background:
    radial-gradient(220px 140px at 100% 0%, rgba(34, 95, 209, 0.08) 0%, rgba(34, 95, 209, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
  box-shadow: var(--schedule-shadow-sm);
  padding: 20px;
}

.schedule-day-board.is-today {
  border-color: rgba(34, 95, 209, 0.28);
  box-shadow: 0 14px 32px rgba(17, 37, 68, 0.09);
}

.schedule-day-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.schedule-day-date {
  font-size: 1.38rem;
  font-weight: 900;
  color: var(--schedule-navy);
  line-height: 1.1;
}

.schedule-day-week {
  margin-top: 6px;
  color: var(--schedule-muted);
  font-size: 0.9rem;
}

.schedule-day-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.schedule-day-matrix-shell {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid rgba(133, 155, 190, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.schedule-day-matrix {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule-day-matrix th,
.schedule-day-matrix td {
  border: 1px solid rgba(133, 155, 190, 0.2);
  text-align: left;
  vertical-align: top;
}

.schedule-day-matrix th {
  padding: 12px 12px 10px;
}

.schedule-day-matrix td {
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.schedule-day-matrix th[data-bucket="minimum"] {
  background: rgba(181, 84, 102, 0.11);
}

.schedule-day-matrix th[data-bucket="standard"] {
  background: rgba(203, 110, 47, 0.11);
}

.schedule-day-matrix th[data-bucket="stretch"] {
  background: rgba(11, 122, 103, 0.11);
}

.schedule-day-matrix th[data-bucket="extra"] {
  background: rgba(79, 105, 148, 0.11);
}

.schedule-day-matrix th[data-bucket="review"] {
  background: rgba(34, 95, 209, 0.11);
}

.schedule-day-matrix-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.schedule-day-matrix-head-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.schedule-day-matrix-title {
  font-size: 0.94rem;
  font-weight: 900;
  color: var(--schedule-primary-strong);
}

.schedule-day-matrix-subtitle {
  margin-top: 3px;
  color: var(--schedule-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.schedule-day-add-button {
  border: 1px solid rgba(11, 122, 103, 0.32);
  background: rgba(11, 122, 103, 0.08);
  color: var(--schedule-ok);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.schedule-day-add-button.is-open {
  background: rgba(11, 122, 103, 0.18);
  border-color: rgba(11, 122, 103, 0.5);
}

.schedule-day-footer {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.schedule-inline-completion,
.schedule-inline-log {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(133, 155, 190, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.schedule-inline-title {
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--schedule-navy);
}

.schedule-inline-completion-form {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) 160px auto;
  gap: 10px;
  align-items: center;
}

.schedule-day-matrix td[data-bucket="extra"] .schedule-inline-completion {
  margin-top: 10px;
}

.schedule-inline-completion-form label,
.schedule-inline-completion-form select {
  min-width: 0;
}

.schedule-inline-completion-field {
  display: grid;
  gap: 4px;
}

.schedule-inline-completion-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--schedule-muted);
}

.schedule-inline-log .schedule-cell-list {
  margin-top: 10px;
}

.schedule-inline-completion.is-compact,
.schedule-inline-log.is-compact {
  padding: 10px 12px;
  border-radius: 14px;
}

.schedule-inline-completion-form.is-compact {
  grid-template-columns: minmax(0, 1fr);
}

.schedule-week-table {
  min-width: 1200px;
}

.schedule-week-table.is-simple {
  min-width: 1200px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
  border: 1px solid rgba(133, 155, 190, 0.34);
}

.schedule-week-table.is-simple th,
.schedule-week-table.is-simple td {
  border: 1px solid rgba(133, 155, 190, 0.24);
  padding: 10px 10px;
  vertical-align: top;
  text-align: left;
  background: #ffffff;
}

.schedule-week-table.is-simple thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--schedule-primary-strong);
  background: #f5f7fc;
  white-space: nowrap;
}

.schedule-week-table.is-simple th:first-child,
.schedule-week-table.is-simple td:first-child {
  width: 150px;
}

.schedule-week-table.is-simple tbody tr:nth-child(even) td {
  background: #fbfcff;
}

.schedule-week-table.is-simple tbody tr.is-today td {
  background: #eef4ff;
}

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

.schedule-table-empty {
  color: var(--schedule-muted);
  font-size: 0.82rem;
}

.schedule-table-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.schedule-table-item {
  padding: 0 0 10px;
  border-bottom: 1px dashed rgba(133, 155, 190, 0.3);
}

.schedule-table-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.schedule-table-item.is-done {
  opacity: 0.62;
}

.schedule-table-item-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--schedule-navy);
}

.schedule-table-item-title a {
  color: var(--schedule-primary-strong);
  text-decoration-thickness: 1px;
}

.schedule-table-item-meta {
  margin-top: 4px;
  color: var(--schedule-muted);
  font-size: 0.78rem;
}

.schedule-table-guide-list {
  margin: 7px 0 0;
  padding-left: 1.1em;
  color: var(--schedule-primary-strong);
  font-size: 0.79rem;
  line-height: 1.6;
}

.schedule-table-guide-list li + li {
  margin-top: 3px;
}

.schedule-table-note {
  margin: 7px 0 0;
  color: var(--schedule-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.schedule-table-item-controls {
  margin-top: 7px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.schedule-table-item-controls.is-done {
  opacity: 0.8;
}

.schedule-table-item-controls.is-done.is-editable {
  opacity: 1;
  grid-template-columns: minmax(0, 1fr);
}

.schedule-table-item-controls select {
  min-width: 0;
}

.schedule-table-item-controls input[type="date"] {
  min-width: 0;
}

.schedule-table-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-inline-completion.is-table {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(133, 155, 190, 0.24);
  background: rgba(255, 255, 255, 0.88);
}

.schedule-inline-title.is-table {
  font-size: 0.8rem;
}

.schedule-inline-completion-form.is-table {
  margin-top: 8px;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.schedule-inline-completion-form.is-table .schedule-inline-completion-field {
  gap: 5px;
}

.schedule-inline-completion-form.is-table select {
  width: 100%;
}

.schedule-inline-completion-form.is-table .schedule-button {
  width: 100%;
  justify-content: center;
}

.schedule-board-table {
  min-width: 1200px;
}

.schedule-board-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.schedule-board-row {
  background: transparent;
}

.schedule-board-row.is-today {
  background: transparent;
}

.schedule-date-cell {
  min-width: 150px;
}

.schedule-date-main {
  font-size: 1rem;
  font-weight: 900;
  color: var(--schedule-navy);
}

.schedule-date-sub,
.schedule-date-capacity,
.schedule-date-completed {
  margin-top: 6px;
  color: var(--schedule-muted);
  font-size: 0.82rem;
}

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

.schedule-cell-list.is-compact {
  gap: 8px;
}

.schedule-task-card {
  border: 1px solid rgba(133, 155, 190, 0.28);
  border-top: 4px solid rgba(34, 95, 209, 0.34);
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 37, 68, 0.06);
}

.schedule-task-card.is-compact {
  padding: 10px;
  border-radius: 14px;
  box-shadow: none;
}

.schedule-task-card.is-compact .schedule-task-meta {
  margin-bottom: 7px;
}

.schedule-task-card.is-compact .schedule-task-title {
  font-size: 0.88rem;
  line-height: 1.45;
}

.schedule-task-card.is-compact .schedule-task-controls {
  margin-top: 10px;
  flex-direction: column;
  align-items: stretch;
}

.schedule-task-card.is-compact .schedule-task-controls select,
.schedule-task-card.is-compact .schedule-task-controls button {
  width: 100%;
}

.schedule-task-card.is-compact .schedule-task-list {
  font-size: 0.82rem;
  line-height: 1.6;
}

.schedule-task-card.is-compact .schedule-task-note {
  font-size: 0.78rem;
}

.schedule-day-section[data-bucket="minimum"] .schedule-task-card {
  border-top-color: rgba(181, 84, 102, 0.72);
  background: linear-gradient(180deg, rgba(181, 84, 102, 0.08) 0%, rgba(255, 255, 255, 1) 74px);
}

.schedule-day-section[data-bucket="standard"] .schedule-task-card {
  border-top-color: rgba(203, 110, 47, 0.78);
  background: linear-gradient(180deg, rgba(203, 110, 47, 0.08) 0%, rgba(255, 255, 255, 1) 74px);
}

.schedule-day-section[data-bucket="stretch"] .schedule-task-card {
  border-top-color: rgba(11, 122, 103, 0.74);
  background: linear-gradient(180deg, rgba(11, 122, 103, 0.08) 0%, rgba(255, 255, 255, 1) 74px);
}

.schedule-day-section[data-bucket="review"] .schedule-task-card,
.schedule-inline-log .schedule-task-card {
  border-top-color: rgba(34, 95, 209, 0.76);
  background: linear-gradient(180deg, rgba(34, 95, 209, 0.07) 0%, rgba(255, 255, 255, 1) 74px);
}

.schedule-task-card.is-review {
  background: linear-gradient(180deg, rgba(34, 95, 209, 0.07) 0%, rgba(255, 255, 255, 1) 74px);
}

.schedule-task-card.is-done {
  opacity: 0.62;
  box-shadow: none;
  filter: saturate(0.25);
}

.schedule-task-card.is-done .schedule-task-title,
.schedule-task-card.is-done .schedule-task-title a,
.schedule-task-card.is-done .schedule-task-note,
.schedule-task-card.is-done .schedule-task-list {
  color: var(--schedule-muted);
}

.schedule-task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.schedule-task-title {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 900;
}

.schedule-task-title a {
  color: var(--schedule-primary-strong);
  text-decoration-thickness: 1px;
}

.schedule-task-note {
  margin-top: 7px;
  color: var(--schedule-muted);
  font-size: 0.82rem;
}

.schedule-task-list {
  margin: 10px 0 0;
  padding-left: 1.2em;
  color: var(--schedule-primary-strong);
  font-size: 0.88rem;
  line-height: 1.7;
}

.schedule-task-list li + li {
  margin-top: 4px;
}

.schedule-task-controls {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.schedule-task-controls.is-done {
  opacity: 0.8;
}

.schedule-task-controls select {
  min-width: 132px;
}

.schedule-cell-empty {
  padding: 13px;
  color: var(--schedule-muted);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px dashed rgba(133, 155, 190, 0.32);
  border-radius: 14px;
}

.schedule-extra-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.schedule-teacher-tools {
  margin-top: 16px;
}

.schedule-extra-form {
  display: grid;
  gap: 13px;
}

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

.schedule-log-list-spaced {
  margin-top: 14px;
}

.schedule-log-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(133, 155, 190, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  box-shadow: var(--schedule-shadow-sm);
}

.schedule-log-item p {
  margin: 0;
}

.schedule-log-meta {
  margin-top: 4px;
  color: var(--schedule-muted);
  font-size: 0.84rem;
}

.schedule-empty {
  padding: 34px 26px;
  text-align: center;
  background:
    radial-gradient(220px 130px at 50% 0%, rgba(34, 95, 209, 0.08) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.96) 100%);
}

.schedule-method-grid {
  margin-top: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.schedule-method-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 255, 0.96) 100%);
}

.schedule-method-card:nth-child(odd) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(34, 95, 209, 0.07) 0%, rgba(34, 95, 209, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 255, 0.96) 100%);
}

.support-layout,
.support-sidebar,
.support-detail,
.support-detail-stack,
.support-stack,
.support-detail-panel {
  display: grid;
  gap: 20px;
}

.support-layout {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  align-items: start;
}

.support-stack {
  grid-template-columns: minmax(0, 1fr);
}

.support-accordion .schedule-accordion-body {
  display: grid;
  gap: 16px;
}

.support-search-form,
.support-search-actions {
  display: grid;
  gap: 12px;
}

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

.support-roster-toolbar {
  display: flex;
  align-items: end;
  gap: 14px;
}

.support-roster-toolbar .schedule-field {
  flex: 1 1 260px;
}

.support-roster-table tbody tr {
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.support-roster-table tbody tr:hover {
  background: rgba(34, 95, 209, 0.05);
}

.support-roster-table tbody tr.is-selected {
  background: linear-gradient(90deg, rgba(34, 95, 209, 0.09) 0%, rgba(34, 95, 209, 0.03) 100%);
  box-shadow: inset 3px 0 0 var(--schedule-primary);
}

.support-roster-name {
  font-weight: 800;
  color: var(--schedule-text);
}

.support-roster-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.support-roster-meta {
  margin-top: 3px;
  color: var(--schedule-muted);
  font-size: 0.84rem;
}

.support-attention-chip[data-risk="high"] {
  background: rgba(163, 56, 48, 0.12);
  color: var(--schedule-danger);
}

.support-attention-chip[data-risk="medium"] {
  background: rgba(203, 110, 47, 0.12);
  color: var(--schedule-accent);
}

.support-attention-chip[data-risk="low"] {
  background: rgba(11, 122, 103, 0.12);
  color: var(--schedule-ok);
}

.support-attention-chip[data-risk="none"] {
  background: rgba(91, 105, 128, 0.14);
  color: var(--schedule-muted);
}

.support-table-value {
  font-weight: 900;
  color: var(--schedule-text);
}

.support-table-meta {
  margin-top: 4px;
  color: var(--schedule-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.support-progress-bar {
  width: 100%;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(133, 155, 190, 0.16);
  overflow: hidden;
}

.support-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(34, 95, 209, 0.88) 0%, rgba(90, 146, 255, 0.95) 100%);
}

.support-student-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 18px;
  align-items: end;
}

.support-student-eyebrow {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--schedule-primary-strong);
  text-transform: uppercase;
}

.support-student-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.support-student-meta {
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(133, 155, 190, 0.18);
  background: rgba(247, 250, 255, 0.94);
}

.support-student-meta span {
  display: block;
  color: var(--schedule-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.support-student-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--schedule-text);
}

.support-inline-message {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11, 122, 103, 0.1);
  color: var(--schedule-ok);
  font-weight: 700;
}

.support-inline-message.is-error {
  background: rgba(163, 56, 48, 0.1);
  color: var(--schedule-danger);
}

.support-roster-table tbody tr.is-risk-medium {
  background: linear-gradient(90deg, rgba(203, 110, 47, 0.05) 0%, rgba(203, 110, 47, 0.015) 100%);
}

.support-roster-table tbody tr.is-risk-high {
  background: linear-gradient(90deg, rgba(163, 56, 48, 0.08) 0%, rgba(163, 56, 48, 0.02) 100%);
  box-shadow: inset 3px 0 0 var(--schedule-danger);
}

.schedule-method-card:nth-child(even) {
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(203, 110, 47, 0.07) 0%, rgba(203, 110, 47, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 250, 245, 0.96) 100%);
}

.schedule-method-card h3 {
  font-size: 1.02rem;
  color: var(--schedule-navy);
}

.schedule-method-card p {
  margin: 10px 0 0;
  color: var(--schedule-muted);
  font-size: 0.92rem;
}

.schedule-coach-table tbody tr {
  cursor: pointer;
  transition: background-color 180ms ease;
}

.schedule-coach-table tbody tr.is-selected {
  background: rgba(34, 95, 209, 0.07);
}

.schedule-coach-table tbody tr:hover {
  background: rgba(18, 40, 72, 0.04);
}

.schedule-coach-detail {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--schedule-radius-lg);
  background:
    linear-gradient(180deg, rgba(233, 241, 255, 0.76) 0%, rgba(247, 250, 255, 0.92) 100%);
  border: 1px solid rgba(133, 155, 190, 0.24);
}

.schedule-panel-spaced {
  margin-top: 16px;
}

.schedule-field-message {
  min-height: 24px;
  margin-top: 10px;
  color: var(--schedule-primary-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.schedule-field-message.is-error {
  color: var(--schedule-danger);
}

.schedule-hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .schedule-hero-grid,
  .schedule-setup-grid,
  .schedule-extra-grid,
  .schedule-grid-2,
  .support-layout,
  .schedule-support-hero,
  .support-student-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .schedule-hero h1 {
    max-width: none;
  }

  .schedule-support-hero-copy h1 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .schedule-container {
    width: min(var(--schedule-container), calc(100% - 20px));
  }

  .schedule-topbar-inner,
  .schedule-topbar-actions,
  .schedule-panel-header,
  .schedule-board-toolbar,
  .schedule-profile-bar,
  .schedule-task-controls,
  .schedule-log-item,
  .support-roster-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-nav {
    justify-content: flex-start;
    gap: 12px;
  }

  .schedule-topbar-button {
    width: 100%;
  }

  .schedule-tabs {
    width: 100%;
  }

  .schedule-accordion-summary {
    flex-direction: column;
  }

  .schedule-page-map-head {
    flex-direction: column;
  }

  .schedule-page-map-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-accordion-heading {
    width: 100%;
  }

  .schedule-accordion-meta {
    max-width: none;
    width: 100%;
  }

  .schedule-form-accordion-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-goal-pace-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-tab {
    flex: 1 1 0;
    text-align: center;
  }

  .schedule-panel,
  .schedule-hero-copy,
  .schedule-hero-card {
    padding: 20px;
  }

  .schedule-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .schedule-hero-proof-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-board-table,
  .schedule-availability-table,
  .schedule-coach-table {
    min-width: 100%;
  }

  .schedule-board-shell,
  .schedule-panel {
    overflow: visible;
  }

  .schedule-summary-grid,
  .schedule-method-grid,
  .schedule-coach-summary,
  .support-student-meta-grid,
  .support-search-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-phase-grid {
    overflow: visible;
    padding: 0;
  }

  .schedule-phase-flow {
    flex-direction: column;
    overflow: visible;
    width: auto;
    padding: 0;
    scroll-snap-type: none;
  }

  .schedule-phase-card {
    flex: 1 1 auto;
  }

  .schedule-phase-connector {
    flex: 0 0 20px;
    padding-top: 0;
    align-items: center;
  }

  .schedule-phase-connector span {
    transform: rotate(90deg);
  }

  .schedule-day-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-day-status {
    justify-content: flex-start;
  }

  .schedule-day-matrix {
    min-width: 960px;
  }

  .schedule-inline-completion-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-week-guide-summary {
    padding: 12px 42px 12px 12px;
  }

  .schedule-week-guide-summary::after {
    right: 10px;
  }

  .schedule-week-guide-body {
    padding: 10px 12px 12px;
  }

  .schedule-week-guide-steps {
    font-size: 0.86rem;
  }

  .schedule-board-actions {
    min-width: 0;
    flex: 1 1 auto;
  }

  .schedule-week-shift-actions {
    margin-left: 0;
    justify-content: flex-start;
  }
}
