:root {
  --bg: #07110f;
  --panel: rgba(14, 30, 26, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(174, 255, 205, 0.16);
  --line-strong: rgba(174, 255, 205, 0.34);
  --green: #20c763;
  --lime: #c6f45b;
  --soft: #9df5b8;
  --blue: #65b7ff;
  --amber: #ffc85a;
  --muted: #b9c9c1;
  --text: #f5fff9;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(32, 199, 99, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 10%, rgba(101, 183, 255, 0.1), transparent 26rem),
    linear-gradient(150deg, #07110f 0%, #10231e 52%, #050807 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

body.locked {
  min-height: 100vh;
  overflow: hidden;
}

body.locked .app-shell {
  display: none;
}

body.auth-checking .lock-screen {
  display: none;
}

button,
input {
  font: inherit;
}

button {
  touch-action: manipulation;
  user-select: none;
}

a {
  color: var(--soft);
}

.lock-screen {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 1rem;
}

.lock-screen.hidden {
  display: none;
}

.lock-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 24rem;
  padding: 1.15rem;
  width: 100%;
}

.lock-card h1 {
  font-size: 2rem;
  max-width: none;
}

.pin-dots {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, 2.25rem);
  justify-content: center;
  min-height: 2.25rem;
}

.pin-dots span {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 1.25rem;
  font-weight: 900;
  height: 2.25rem;
  justify-content: center;
  line-height: 1;
}

.pin-dots span.filled {
  background: rgba(198, 244, 91, 0.14);
  border-color: rgba(198, 244, 91, 0.62);
  color: var(--text);
}

.pin-error {
  color: #ffc85a;
  font-size: 0.8rem;
  font-weight: 850;
  min-height: 1rem;
  text-align: center;
}

.keypad {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.keypad button {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(174, 255, 205, 0.18);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
  min-height: 3.2rem;
}

.keypad .keypad-enter {
  background: linear-gradient(135deg, rgba(32, 199, 99, 0.88), rgba(198, 244, 91, 0.82));
  border-color: rgba(198, 244, 91, 0.72);
  color: #06110d;
  grid-column: 1 / -1;
}

.app-shell {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1120px;
  padding: 1rem 0.9rem 4rem;
}

.hero-panel,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  padding: 1rem;
}

.hero-panel {
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  background:
    linear-gradient(90deg, rgba(174, 255, 205, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(174, 255, 205, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(130deg, transparent, black 28%, black 72%, transparent);
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.topbar,
.section-heading,
.split {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 8vw, 4.1rem);
  font-weight: 900;
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.15;
}

h3 {
  font-size: 1rem;
  font-weight: 850;
}

.eyebrow {
  color: #9df5b8;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy,
.system-note,
.muted,
small {
  color: var(--muted);
}

.hero-copy {
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 1.25rem;
  max-width: 58rem;
}

.daily-quote {
  border-left: 3px solid rgba(157, 245, 184, 0.42);
  color: #d9ebe1;
  display: grid;
  gap: 0.25rem;
  line-height: 1.35;
  margin: 0.65rem 0 0;
  max-width: 38rem;
  padding-left: 0.65rem;
}

.daily-quote span {
  font-size: 0.88rem;
  font-weight: 750;
}

.daily-quote cite {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.daily-quote cite::before {
  content: "- ";
}

.hero-quote {
  margin-top: 0.9rem;
}

.hero-stats,
.stats-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stats {
  margin-top: 1.25rem;
}

.stat,
.chart-panel,
.source-card,
.phase-grid > div {
  background: rgba(2, 10, 8, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.stat {
  min-height: 5.4rem;
  padding: 0.8rem;
}

.stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.stat span {
  color: #9df5b8;
  display: block;
  font-size: 0.76rem;
  font-weight: 850;
  margin-top: 0.2rem;
}

.stat small {
  display: block;
  font-size: 0.75rem;
  line-height: 1.25;
  margin-top: 0.45rem;
}

.rank-chip,
.bonus-chip,
.xp-pill,
.ghost-button {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 850;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.68rem;
  white-space: nowrap;
}

.rank-chip {
  background: rgba(32, 199, 99, 0.16);
  color: #dbffe7;
}

.muted-chip,
.bonus-chip {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.bonus-chip.live {
  background: rgba(32, 199, 99, 0.18);
  color: #9df5b8;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
}

.tabbar {
  background: rgba(2, 10, 8, 0.46);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  gap: 0.25rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.25rem;
  position: sticky;
  top: 0.5rem;
  z-index: 10;
}

.tab {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
  min-height: 2.45rem;
}

.tab.active {
  background: var(--green);
  color: #04100a;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  gap: 1rem;
}

.completion {
  margin-top: 1rem;
}

.model-cue {
  background: rgba(198, 244, 91, 0.08);
  border: 1px solid rgba(198, 244, 91, 0.26);
  border-radius: 8px;
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.85rem;
}

.model-cue span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.model-cue strong {
  font-size: 1rem;
}

.model-cue p {
  color: var(--muted);
  line-height: 1.35;
  margin: 0;
}

.model-cue a {
  font-size: 0.84rem;
  font-weight: 850;
}

.meter {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  height: 0.75rem;
  margin-top: 0.45rem;
  overflow: hidden;
}

.meter span {
  background: linear-gradient(90deg, var(--green), var(--lime));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 0;
}

.goal-list,
.day-list,
.source-grid,
.mix-list,
.recent-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.expand-card {
  background: rgba(2, 10, 8, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.complete-card {
  background: rgba(32, 199, 99, 0.12);
  border-color: var(--line-strong);
}

.goal-head {
  align-items: center;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  min-height: 4.1rem;
  padding: 0.72rem;
}

.check,
.plus-button {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #07110f;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.check {
  background: transparent;
  color: #07110f;
}

.check.checked {
  background: #9df5b8;
}

.check.locked-check {
  cursor: default;
}

.plus-button {
  background: rgba(255, 255, 255, 0.08);
  color: #9df5b8;
  font-size: 1rem;
}

.goal-title {
  min-width: 0;
}

.goal-title strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.18;
}

.goal-title small {
  display: block;
  font-size: 0.74rem;
  line-height: 1.25;
  margin-top: 0.2rem;
}

.xp-pill {
  background: rgba(198, 244, 91, 0.13);
  color: #e1ff80;
  min-width: 4rem;
}

.expand-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9ebe1;
  display: none;
  font-size: 0.84rem;
  line-height: 1.45;
  padding: 0.85rem;
}

.expand-body.open {
  display: grid;
  gap: 0.75rem;
}

.expand-body ul {
  display: grid;
  gap: 0.32rem;
  margin: 0;
  padding-left: 1.1rem;
}

.expand-body strong {
  color: var(--text);
}

.expand-body a {
  color: #9fd0ff;
  font-weight: 800;
}

.lesson-meta,
.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lesson-meta span,
.video-row a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(174, 255, 205, 0.18);
  border-radius: 999px;
  color: #9df5b8;
  font-size: 0.75rem;
  font-weight: 850;
  padding: 0.42rem 0.62rem;
  text-decoration: none;
}

.video-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
}

.video-row strong {
  flex: 0 0 100%;
}

.task-reset-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ffc85a;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 2.15rem;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  min-width: 2.15rem;
  padding: 0;
}

.stat-input {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: minmax(0, 1fr) 5.25rem;
  padding: 0.65rem;
}

.stat-input.invalid {
  border-color: rgba(255, 105, 105, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 105, 105, 0.18);
}

.stat-input span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.stat-input span em {
  color: #9fc2ae;
  display: block;
  font-size: 0.68rem;
  font-style: normal;
  margin-top: 0.18rem;
}

.stat-input input {
  background: #f5fff9;
  border: 0;
  border-radius: 6px;
  color: #07110f;
  font-weight: 850;
  min-height: 2.3rem;
  padding: 0 0.6rem;
  width: 100%;
}

.stat-input.locked {
  opacity: 0.82;
}

.stat-input input:disabled {
  background: rgba(245, 255, 249, 0.64);
  color: rgba(7, 17, 15, 0.72);
  cursor: not-allowed;
}

.stat-error {
  color: #ffb7b7;
  font-size: 0.75rem;
  font-weight: 850;
  grid-column: 1 / -1;
  min-height: 0;
}

.diagram {
  background:
    repeating-linear-gradient(90deg, rgba(174, 255, 205, 0.21) 0 12.5%, rgba(32, 199, 99, 0.14) 12.5% 25%),
    #315f31;
  border: 0.5rem solid rgba(65, 92, 42, 0.95);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(245, 255, 249, 0.3);
  height: 11rem;
  overflow: hidden;
  position: relative;
}

.diagram::before {
  border: 1px solid rgba(245, 255, 249, 0.22);
  border-radius: 8px;
  content: "";
  inset: 0.8rem;
  position: absolute;
}

.pitch-halfway {
  background: rgba(245, 255, 249, 0.34);
  bottom: 0.8rem;
  left: 50%;
  position: absolute;
  top: 0.8rem;
  width: 1px;
}

.pitch-circle {
  border: 1px solid rgba(245, 255, 249, 0.34);
  border-radius: 999px;
  height: 3.1rem;
  left: calc(50% - 1.55rem);
  position: absolute;
  top: calc(50% - 1.55rem);
  width: 3.1rem;
}

.pitch-box {
  border: 1px solid rgba(245, 255, 249, 0.28);
  height: 5rem;
  position: absolute;
  top: calc(50% - 2.5rem);
  width: 3.1rem;
}

.pitch-box.left {
  border-left: 0;
  left: 0.8rem;
}

.pitch-box.right {
  border-right: 0;
  right: 0.8rem;
}

.d-dot {
  background: var(--lime);
  border: 2px solid #07110f;
  border-radius: 999px;
  height: 1rem;
  position: absolute;
  width: 1rem;
  z-index: 2;
}

.d1 { left: 14%; top: 62%; }
.d2 { left: 36%; top: 34%; }
.d3 { right: 34%; top: 58%; }
.d4 { right: 13%; top: 28%; }

.d-line {
  background: linear-gradient(90deg, transparent, #9df5b8, transparent);
  height: 2px;
  position: absolute;
  transform-origin: left center;
  z-index: 1;
}

.l1 {
  left: 17%;
  top: 60%;
  transform: rotate(-26deg);
  width: 44%;
}

.l2 {
  left: 39%;
  top: 41%;
  transform: rotate(21deg);
  width: 45%;
}

.l3 {
  left: 57%;
  top: 58%;
  transform: rotate(-35deg);
  width: 33%;
}

.pitch-speed .l1,
.pitch-speed .l2,
.pitch-speed .l3 {
  top: 50%;
  transform: rotate(0deg);
}

.d-label {
  background: rgba(2, 10, 8, 0.62);
  border-radius: 4px;
  color: #f5fff9;
  font-size: 0.62rem;
  font-weight: 850;
  max-width: 7.4rem;
  padding: 0.15rem 0.24rem;
  position: absolute;
}

.d-label.a { left: 8%; bottom: 10%; }
.d-label.b { left: 31%; top: 14%; }
.d-label.c { right: 28%; bottom: 15%; }
.d-label.d { right: 7%; top: 12%; }

.pagination {
  align-items: center;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 1rem;
}

.pagination span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.schedule-day {
  background: rgba(2, 10, 8, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: inherit;
  text-align: left;
}

.schedule-day {
  display: grid;
  padding: 0.75rem;
}

.schedule-summary {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 4.4rem minmax(0, 1fr) auto;
  padding: 0;
  text-align: left;
  width: 100%;
}

.schedule-day.open {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(174, 255, 205, 0.12);
}

.schedule-day.qualified {
  background: rgba(32, 199, 99, 0.14);
}

.schedule-day.type-match {
  border-color: rgba(255, 200, 90, 0.34);
}

.schedule-day.type-team {
  border-color: rgba(101, 183, 255, 0.32);
}

.schedule-day.type-rest {
  opacity: 0.82;
}

.date-block {
  color: #9df5b8;
  font-size: 0.72rem;
  font-weight: 850;
}

.date-block small {
  display: block;
  font-size: 0.67rem;
  margin-top: 0.15rem;
}

.summary-main strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.18;
}

.summary-main small {
  display: block;
  font-size: 0.73rem;
  line-height: 1.3;
  margin-top: 0.16rem;
}

.schedule-summary em {
  color: var(--amber);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.day-actions {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.65rem;
}

.type-button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 850;
  min-height: 2rem;
  min-width: 0;
  padding: 0 0.35rem;
}

.type-button.active {
  background: rgba(32, 199, 99, 0.18);
  border-color: var(--line-strong);
  color: #9df5b8;
}

.schedule-detail {
  display: none;
}

.schedule-detail.open {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.compact-completion {
  margin-top: 0;
}

.schedule-goals {
  margin-top: 0;
}

.plan-footer {
  background: rgba(2, 10, 8, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.85rem;
}

.app-version-footer {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.45rem 0.9rem;
  justify-content: center;
  padding: 0.3rem 0 0.6rem;
}

.plan-start-summary {
  align-items: flex-start;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.plan-start-summary strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
  margin-top: 0.18rem;
}

.plan-start-summary small {
  display: block;
  font-size: 0.76rem;
  line-height: 1.35;
  margin-top: 0.35rem;
}

.plan-start-editor {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.7rem;
  padding-top: 0.75rem;
}

.plan-start-editor label {
  display: grid;
  gap: 0.35rem;
}

.plan-start-editor label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.plan-start-editor input {
  background: #f5fff9;
  border: 0;
  border-radius: 6px;
  color: #07110f;
  font-weight: 850;
  min-height: 2.45rem;
  padding: 0 0.7rem;
  width: 100%;
}

.row-actions {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.day-actions.row-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.empty-state {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.9rem;
}

.empty-state strong {
  font-size: 0.95rem;
}

.empty-state small {
  line-height: 1.35;
}

.chart-panel {
  margin-top: 1rem;
  padding: 0.9rem;
}

.mix-row {
  align-items: center;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 5.8rem minmax(0, 1fr) 2.5rem;
}

.mix-row span,
.mix-row em {
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.mix-bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  height: 0.65rem;
  overflow: hidden;
}

.mix-bar strong {
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.recent-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.recent-list span {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  display: flex;
  font-size: 0.75rem;
  font-weight: 850;
  justify-content: center;
}

.recent-list span.qualified {
  background: rgba(32, 199, 99, 0.18);
  border-color: var(--line-strong);
  color: #9df5b8;
}

.source-grid {
  grid-template-columns: 1fr;
}

.source-card {
  color: inherit;
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  text-decoration: none;
}

.source-card span {
  color: #9fd0ff;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.source-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.source-card small {
  font-size: 0.78rem;
  line-height: 1.38;
}

@media (min-width: 760px) {
  .app-shell {
    gap: 1.25rem;
    padding: 1.25rem 1.25rem 5rem;
  }

  .hero-stats,
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

}

@media (max-width: 430px) {
  .app-shell {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .hero-panel,
  .panel {
    padding: 0.82rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .tabbar {
    gap: 0.15rem;
    padding: 0.18rem;
  }

  .tab {
    font-size: 0.78rem;
    min-width: 0;
  }

  .goal-head {
    gap: 0.55rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .goal-head .plus-button {
    grid-column: 3;
    grid-row: 2;
  }

  .xp-pill {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

  .bonus-chip {
    max-width: 9rem;
    text-align: center;
    white-space: normal;
  }

  .section-heading {
    align-items: flex-start;
  }

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

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