:root {
  --green: #15a765;
  --green-dark: #08794a;
  --green-action: #08794a;
  --green-chart: #08794a;
  --green-pale: #eaf9f1;
  --green-soft: #c9f0dc;
  --ink: #18201c;
  --muted: #69736e;
  --line: #e5eae7;
  --surface: #f7f9f8;
  --white: #ffffff;
  --nav-height: 76px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { background: #f2f5f3; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button {
  color: inherit;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
summary {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
button, summary, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid rgba(21, 167, 101, .24);
  outline-offset: 2px;
}

.app-shell {
  width: min(100%, 660px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  padding-bottom: calc(var(--nav-height) + env(safe-area-inset-bottom));
}

.topbar {
  min-height: calc(85px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(18px + env(safe-area-inset-top)) 22px 12px;
  background: rgba(255, 255, 255, .94);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 234, 231, .74);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { flex: 0 0 auto; }
.brand span { font-size: .72rem; font-weight: 800; letter-spacing: .115em; line-height: 1.08; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.today-date { margin: 0; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .1em; }
.help-button { width: 34px; height: 34px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--green-dark); font-size: .88rem; font-weight: 800; cursor: pointer; }
.help-button:active { transform: scale(.92); }

main { outline: 0; }
.view { padding: 34px 20px 38px; animation: view-in 240ms ease both; }
.view[hidden] { display: none; }

.section-heading { margin: 0 2px 24px; }
.section-heading h1 { margin: 3px 0 0; font-size: clamp(1.8rem, 7vw, 2.35rem); line-height: 1.08; letter-spacing: -.045em; }
.workout-concept { margin: 9px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.4; white-space: nowrap; }
.today-summary { margin-top: 19px; display: grid; gap: 5px; }
.today-summary-count { margin: 0; font-size: .9rem; font-weight: 760; letter-spacing: -.01em; line-height: 1.35; }
.today-summary-values { margin: 0; color: var(--muted); font-size: .78rem; font-weight: 650; line-height: 1.55; }
.eyebrow { margin: 0; color: var(--green-dark); font-size: .72rem; font-weight: 800; letter-spacing: .13em; }

.activity-list { display: grid; gap: 1px; border-block: 1px solid var(--line); }
.activity-row {
  min-height: 76px;
  padding: 12px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}
.activity-row:last-child { border-bottom: 0; }
.activity-row.has-value .activity-name { color: var(--green-dark); }
.activity-row.just-changed { animation: row-flash 460ms ease; }
.activity-row.is-locked { opacity: .43; }
.activity-leading { min-width: 0; flex: 1 1 auto; display: flex; align-items: center; gap: 10px; }
.activity-icon { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; color: var(--green-dark); }
.activity-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.activity-copy { min-width: 0; display: grid; gap: 3px; }
.activity-name { font-size: .86rem; font-weight: 800; letter-spacing: .065em; line-height: 1.15; }
.activity-description { color: var(--muted); font-size: .75rem; line-height: 1.3; }

.stepper { width: 160px; display: grid; grid-template-columns: 43px 74px 43px; align-items: center; flex: 0 0 160px; }
.stepper output { width: 74px; text-align: center; font-size: .86rem; font-weight: 750; font-variant-numeric: tabular-nums; white-space: nowrap; }
.step-button {
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.32rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: transform 100ms ease, border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}
.step-button.plus { color: var(--white); background: var(--green-action); border-color: var(--green-action); }
.step-button:active { transform: scale(.88); }
.step-button:hover:not(:disabled) { border-color: var(--green); }
.step-button.plus:hover { background: #05643d; }
.step-button:disabled { color: #b7bfbb; cursor: default; }
.step-button.plus:disabled { color: #aab3ae; background: #eef1ef; border-color: #e6eae8; }

.visit-toggle {
  min-width: 105px;
  min-height: 43px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 100ms ease, color 160ms ease, background-color 160ms ease;
}
.visit-toggle span { font-size: 1rem; line-height: 1; }
.visit-toggle.is-on { color: var(--white); background: var(--green-action); border-color: var(--green-action); }
.visit-toggle:active { transform: scale(.93); }

.check-toggle {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 100ms ease, color 160ms ease, background-color 160ms ease;
}
.check-toggle.is-on { color: var(--white); background: var(--green-action); border-color: var(--green-action); }
.check-toggle:active { transform: scale(.88); }
.check-toggle:disabled { color: #aab3ae; background: #eef1ef; border-color: #e6eae8; cursor: default; }

.more-panel { margin-top: 15px; border-bottom: 1px solid var(--line); }
.more-panel summary { min-height: 58px; display: flex; align-items: center; gap: 10px; list-style: none; cursor: pointer; font-size: .86rem; font-weight: 800; letter-spacing: .05em; }
.more-panel summary::-webkit-details-marker { display: none; }
.summary-plus { color: var(--green); font-size: 1.15rem; transition: transform 180ms ease; }
.more-panel[open] .summary-plus { transform: rotate(45deg); }
.more-panel.is-locked summary { opacity: .55; }
.more-count { margin-left: auto; color: var(--muted); font-size: .7rem; font-weight: 600; letter-spacing: .02em; }
.secondary-list { margin-bottom: 14px; border-top: 0; }
.activity-row.is-compact { min-height: 67px; }
.activity-row.is-compact .activity-description { display: block; font-size: .68rem; }

.library-field { padding: 18px 2px 20px; border-bottom: 1px solid var(--line); }
.library-field.is-entering { animation: field-in 220ms ease both; }
.library-field label { display: block; margin-bottom: 9px; font-size: .79rem; font-weight: 750; }
.library-field label span { margin-left: 6px; color: var(--muted); font-size: .68rem; font-weight: 550; }
.library-input-wrap { position: relative; }
.library-input-wrap svg { position: absolute; left: 14px; top: 50%; width: 18px; transform: translateY(-50%); fill: none; stroke: var(--green-dark); stroke-width: 1.7; }
.library-field input { width: 100%; min-height: 49px; border: 1px solid var(--line); border-radius: 11px; padding: 11px 43px 11px 43px; background: var(--surface); color: var(--ink); font-size: 1rem; }
.library-field input::placeholder { color: var(--muted); }
.library-field input:focus { border-color: var(--green); background: var(--white); }
.clear-library { position: absolute; right: 7px; top: 50%; width: 36px; height: 36px; transform: translateY(-50%); border: 0; background: transparent; color: var(--muted); font-size: 1.2rem; cursor: pointer; }
.recent-library-area { margin-top: 10px; }
.recent-library-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.recent-library-heading > span { color: var(--muted); font-size: .68rem; }
.manage-libraries { padding: 4px 1px; border: 0; background: transparent; color: var(--green-dark); font-size: .68rem; font-weight: 750; cursor: pointer; }
.recent-libraries { margin-top: 7px; display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.recent-libraries::-webkit-scrollbar { display: none; }
.recent-libraries button { flex: 0 0 auto; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .72rem; cursor: pointer; }
.recent-library-area.is-managing .recent-libraries { flex-wrap: wrap; overflow: visible; }
.recent-libraries .saved-library-remove { display: inline-flex; align-items: center; gap: 7px; border-color: #d9e4de; color: var(--ink); }
.saved-library-remove b { color: #a34b4b; font-size: .9rem; line-height: 1; }

.bars-large i { display: block; width: 8px; border-radius: 3px 3px 1px 1px; background: var(--green); transform-origin: bottom; }

.calendar-heading, .stats-heading { display: flex; align-items: flex-end; justify-content: space-between; }
.month-controls { display: flex; gap: 7px; }
.icon-button, .close-button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; font-size: 1.05rem; }
.icon-button:active, .close-button:active { transform: scale(.92); }
.calendar-card { padding: 22px 14px 18px; border: 1px solid var(--line); border-radius: 18px; }
.calendar-month { margin: 0 8px 22px; font-size: 1rem; font-weight: 760; letter-spacing: -.015em; }
.weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.weekdays { margin-bottom: 7px; }
.weekdays span { color: var(--muted); text-align: center; font-size: .64rem; font-weight: 750; }
.calendar-day { aspect-ratio: 1; min-width: 0; padding: 0; display: grid; place-content: center; gap: 3px; position: relative; border: 0; border-radius: 50%; background: transparent; font-size: .78rem; font-weight: 650; cursor: pointer; }
.calendar-day:hover { background: var(--surface); }
.calendar-day.is-today { box-shadow: inset 0 0 0 1.5px var(--green); }
.calendar-day.has-entry { background: var(--green-pale); color: var(--green-dark); }
.calendar-day.level-2 { background: var(--green-soft); }
.calendar-day.level-3 { background: var(--green-action); color: var(--white); }
.calendar-day i { width: 3px; height: 3px; margin: 0 auto; border-radius: 50%; background: currentColor; }
.calendar-legend { display: flex; justify-content: center; gap: 18px; margin: 12px 0 31px; color: var(--muted); font-size: .66rem; }
.calendar-legend span { display: flex; align-items: center; gap: 5px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-pale); }.legend-dot.medium { background: var(--green-soft); }.legend-dot.strong { background: var(--green-action); }
.calendar-day.is-future { color: #bac1bd; background: transparent; cursor: default; }
.calendar-day:disabled { pointer-events: none; }
.icon-button:disabled { color: #bec5c1; background: var(--surface); cursor: default; }
.recent-days > .eyebrow { margin-bottom: 7px; }
.recent-day-row { width: 100%; min-height: 66px; padding: 10px 2px; display: grid; grid-template-columns: 1fr auto 20px; gap: 15px; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.recent-date { display: grid; gap: 4px; min-width: 0; }.recent-date strong { font-size: .9rem; }.recent-date small { overflow: hidden; color: var(--muted); font-size: .71rem; white-space: nowrap; text-overflow: ellipsis; }
.recent-activity-count { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; }.recent-activity-count small { display: block; color: var(--muted); font-size: .62rem; font-weight: 550; }
.empty-copy { margin: 18px 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.period-switch { width: 100%; margin: -4px 0 13px; padding: 3px; display: grid; grid-template-columns: 1fr 1fr; border-radius: 11px; background: #eef2f0; }
.period-switch button { min-height: 39px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .09em; cursor: pointer; }
.period-switch button.is-active { background: var(--white); color: var(--green-dark); box-shadow: 0 1px 4px rgba(24, 32, 28, .09); }
.period-navigator { min-height: 60px; margin-bottom: 16px; display: grid; grid-template-columns: 44px 1fr 44px; gap: 12px; align-items: center; }
.period-navigator p { margin: 0; text-align: center; font-size: .95rem; font-weight: 760; letter-spacing: -.01em; }
.workout-days { min-height: 132px; display: grid; grid-template-columns: auto 1fr auto; gap: 17px; align-items: center; padding: 24px 20px; border-radius: 18px; background: var(--ink); color: var(--white); }
.workout-days-number { min-width: 58px; color: #62daa2; font-size: 3.3rem; font-weight: 780; line-height: 1; letter-spacing: -.06em; font-variant-numeric: tabular-nums; }
.workout-days strong { font-size: .78rem; letter-spacing: .08em; }.workout-days p { margin: 5px 0 0; color: #aeb8b3; font-size: .7rem; }
.bars-large { height: 53px; display: flex; align-items: end; gap: 6px; opacity: .9; }.bars-large i { width: 9px; background: #62daa2; }.bars-large i:nth-child(1) { height: 27px; }.bars-large i:nth-child(2) { height: 51px; }.bars-large i:nth-child(3) { height: 38px; }
.stat-totals { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat-totals div { min-height: 82px; padding: 15px; display: grid; align-content: space-between; gap: 9px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-totals div:last-child { grid-column: 1 / -1; }
.stat-totals span { color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .08em; }.stat-totals strong { font-size: 1.25rem; letter-spacing: -.025em; }
.activity-chart { margin-top: 34px; }
.year-trend { margin-top: 34px; }
.chart-header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 19px; }
.chart-header h2 { margin: 4px 0 0; font-size: 1.25rem; letter-spacing: -.03em; }.chart-header > p { margin: 0; color: var(--muted); text-align: right; font-size: .62rem; line-height: 1.35; }
.bar-row { min-height: 41px; display: grid; grid-template-columns: 86px 1fr 70px; gap: 9px; align-items: center; }
.bar-row > span { overflow: hidden; font-size: .68rem; font-weight: 750; letter-spacing: .035em; text-overflow: ellipsis; }
.bar-row > strong { text-align: right; font-size: .72rem; font-variant-numeric: tabular-nums; }
.bar-track { height: 8px; overflow: hidden; border-radius: 2px; background: var(--surface); }.bar-track i { display: block; width: var(--bar-width); min-width: 1px; height: 100%; border-radius: inherit; background: var(--green-chart); animation: chart-grow 500ms ease both; }
.month-bars { display: grid; gap: 2px; }
.month-bar-row { min-height: 28px; display: grid; grid-template-columns: 36px 1fr 24px; gap: 10px; align-items: center; }
.month-bar-row > span { color: var(--muted); font-size: .62rem; font-weight: 750; letter-spacing: .04em; }
.month-bar-row > strong { text-align: right; font-size: .68rem; font-variant-numeric: tabular-nums; }
.month-bar-track { height: 5px; overflow: hidden; border-radius: 2px; background: var(--surface); }
.month-bar-track i { display: block; width: var(--bar-width); height: 100%; border-radius: inherit; background: var(--green-chart); animation: chart-grow 500ms ease both; }
.month-bar-row.is-future { opacity: .42; }
.month-bar-row.is-future .month-bar-track { background: transparent; }
.libraries-month { margin-top: 34px; }.libraries-month > .eyebrow { margin-bottom: 8px; }.libraries-month-list { display: grid; }
#libraries-month-list div { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); font-size: .81rem; }
#libraries-month-list span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }#libraries-month-list strong { flex: 0 0 auto; color: var(--muted); font-size: .7rem; }
.data-tools { margin-top: 38px; padding: 19px 0 3px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
.data-tools p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; }
.data-tools .eyebrow { margin: 0; color: var(--green-dark); }
.data-actions { display: flex; gap: 7px; }
.data-actions button { min-height: 40px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); font-size: .72rem; font-weight: 700; cursor: pointer; }
.data-actions button:hover { border-color: var(--green); color: var(--green-dark); }

.bottom-nav { position: fixed; z-index: 20; left: 50%; bottom: 0; width: min(100%, 660px); min-height: calc(var(--nav-height) + env(safe-area-inset-bottom)); padding: 7px 20px env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); background: rgba(255,255,255,.96); transform: translateX(-50%); backdrop-filter: blur(16px); }
.nav-item { min-height: 60px; display: grid; place-items: center; align-content: center; gap: 5px; border: 0; background: transparent; color: #626c67; cursor: pointer; }
.nav-item svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.nav-item span { font-size: .62rem; font-weight: 800; letter-spacing: .08em; }.nav-item.is-active { color: var(--green-dark); }

.sheet-backdrop { position: fixed; z-index: 40; inset: 0; background: rgba(14, 20, 17, .36); opacity: 0; transition: opacity 220ms ease; }.sheet-backdrop.is-open { opacity: 1; }
.day-sheet, .help-sheet { position: fixed; z-index: 50; left: 50%; bottom: 0; width: min(100%, 660px); max-height: 88vh; padding: 9px 20px max(28px, env(safe-area-inset-bottom)); overflow-y: auto; border-radius: 24px 24px 0 0; background: var(--white); transform: translate(-50%, 105%); transition: transform 260ms cubic-bezier(.2,.8,.2,1); }
.day-sheet.is-open, .help-sheet.is-open { transform: translate(-50%, 0); }
.sheet-handle { width: 38px; height: 4px; margin: 0 auto 17px; border-radius: 9px; background: #d4dad7; }.sheet-header { position: sticky; z-index: 2; top: -9px; padding: 8px 0 15px; display: flex; align-items: center; justify-content: space-between; background: var(--white); }.sheet-header h2 { margin: 4px 0 0; font-size: 1.45rem; letter-spacing: -.035em; }.close-button { font-size: 1.4rem; }.sheet-activities { border-top: 1px solid var(--line); }.sheet-open { overflow: hidden; }
.sheet-content:focus { outline: 0; }
.day-view-library { margin: 4px 2px 20px; color: var(--ink); font-size: 1rem; font-weight: 700; line-height: 1.45; }
.day-view-list { border-block: 1px solid var(--line); }
.day-view-row { min-height: 64px; padding: 12px 2px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); }
.day-view-row:last-child { border-bottom: 0; }
.day-view-row > strong { color: var(--ink); font-size: .82rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.day-sheet-actions { padding: 18px 2px 4px; display: flex; justify-content: flex-end; }
.day-mode-button { min-width: 82px; min-height: 42px; padding: 9px 17px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); color: var(--green-dark); font-size: .78rem; font-weight: 750; cursor: pointer; }
.day-mode-button:hover { border-color: var(--green-dark); }
.day-edit .more-panel { margin-top: 14px; }
.help-content { display: grid; gap: 0; }
.help-content section { padding: 20px 2px; border-top: 1px solid var(--line); }
.help-content h3 { margin: 0 0 10px; color: var(--green-dark); font-size: .72rem; letter-spacing: .1em; }
.help-content p, .help-content li { color: #4f5a54; font-size: .86rem; line-height: 1.7; }
.help-content p { margin: 0; }
.help-content p + p { margin-top: 9px; }
.help-content ol { margin: 0; padding-left: 1.35rem; }
.creator > strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.creator-links { margin-top: 13px; display: flex; gap: 9px; }
.creator-links > a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--green-dark); font-size: .72rem; font-weight: 700; text-decoration: none; }
.creator-links > a:hover { border-color: var(--green); }
.save-toast { position: fixed; z-index: 100; left: 50%; bottom: calc(var(--nav-height) + 14px + env(safe-area-inset-bottom)); padding: 9px 14px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: .72rem; font-weight: 700; opacity: 0; transform: translate(-50%, 10px); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; }.save-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.save-toast.is-error { background: #9a3f3f; }

@keyframes row-flash { 0% { background: var(--green-pale); } 100% { background: var(--white); } }
@keyframes chart-grow { from { width: 0; } }
@keyframes field-in { from { opacity: 0; transform: translateY(-6px); } }
@keyframes view-in { from { opacity: 0; transform: translateY(4px); } }

@media (min-width: 720px) {
  body { padding: 22px 0; }
  .app-shell { min-height: calc(100vh - 44px); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(24, 32, 28, .08); }
  .bottom-nav { bottom: 22px; border: 1px solid var(--line); border-radius: 0 0 17px 17px; }
  .topbar { border-radius: 17px 17px 0 0; }
  .view { padding-inline: 38px; }
  .day-sheet, .help-sheet { bottom: 22px; border-radius: 24px; box-shadow: 0 24px 80px rgba(10, 20, 15, .25); }
}

@media (max-width: 365px) {
  .view { padding-inline: 15px; }
  .topbar { padding-inline: 17px; }
  .activity-row { gap: 6px; }
  .stepper { width: 148px; grid-template-columns: 40px 68px 40px; flex-basis: 148px; }
  .stepper output { width: 68px; font-size: .8rem; }
  .step-button { width: 40px; height: 40px; }
  .activity-leading { gap: 7px; }
  .activity-icon { width: 29px; height: 29px; flex-basis: 29px; }
  .activity-icon svg { width: 16px; height: 16px; }
  .activity-description { font-size: .68rem; }
  .workout-concept { font-size: .76rem; }
  .visit-toggle { min-width: 96px; padding-inline: 10px; }
  .calendar-legend { gap: 9px; }
  .data-tools { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
