:root {
  color-scheme: light;
  --canvas: #eef2ef;
  --canvas-deep: #e4ebe6;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-muted: #f6f8f6;
  --ink: #17211f;
  --ink-soft: #35423f;
  --muted: #6f7c78;
  --muted-light: #96a19d;
  --line: #d9e1dc;
  --line-strong: #c7d2cb;
  --accent: #26725d;
  --accent-strong: #185a49;
  --accent-bright: #78c8a9;
  --accent-soft: #e4f0eb;
  --accent-pale: #f1f7f4;
  --blue: #476883;
  --blue-soft: #eaf0f5;
  --amber: #b5772f;
  --amber-soft: #fbf2e5;
  --danger: #b8534b;
  --danger-soft: #faece9;
  --panel-dark: #17312c;
  --panel-dark-mid: #21443c;
  --shadow: 0 18px 46px rgba(37, 59, 51, 0.08);
  --shadow-soft: 0 8px 24px rgba(37, 59, 51, 0.055);
  --radius-shell: 24px;
  --radius-card: 18px;
  --radius-control: 12px;
  --font-body: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-display: "Bahnschrift", "Aptos Display", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
}

body {
  min-height: 100vh;
  margin: 0;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(rgba(38, 114, 93, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 114, 93, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 12% -8%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(180deg, #f3f6f3 0%, var(--canvas) 48%, var(--canvas-deep) 100%);
  background-attachment: fixed;
  background-size: 32px 32px, 32px 32px, auto, auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
input,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(38, 114, 93, 0.22);
  outline-offset: 2px;
}

::selection {
  color: #fff;
  background: var(--accent);
}

.background-orb {
  display: none;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.85fr);
  column-gap: 20px;
  row-gap: 18px;
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto;
  padding: 34px 0 24px;
}

.hero {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  min-height: 226px;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    transparent;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-shell);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.76) inset;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 76px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 999px 999px;
  content: "";
}

.hero::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 84px;
  height: 84px;
  background:
    radial-gradient(circle at center, transparent 0 25%, rgba(38, 114, 93, 0.1) 26% 27%, transparent 28%),
    radial-gradient(circle at center, transparent 0 48%, rgba(38, 114, 93, 0.07) 49% 50%, transparent 51%);
  border-radius: 50%;
  content: "";
  opacity: 0.8;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 15px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border: 3px solid var(--accent-soft);
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.6vw, 3.15rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.today-date {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.today-date::before {
  width: 18px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.progress-card {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  min-height: 226px;
  flex-direction: column;
  padding: 25px 26px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(120, 200, 169, 0.16), transparent 37%),
    linear-gradient(145deg, var(--panel-dark) 0%, #1d3b34 58%, var(--panel-dark-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-shell);
  box-shadow: 0 22px 50px rgba(24, 61, 52, 0.18);
  overflow: hidden;
}

.progress-card::before {
  position: absolute;
  top: -92px;
  right: -78px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(255, 255, 255, 0.025),
    0 0 0 52px rgba(255, 255, 255, 0.014);
  content: "";
}

.progress-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.progress-card__content,
.progress-track {
  position: relative;
  z-index: 1;
}

.progress-card__content {
  display: grid;
  gap: 10px;
}

.progress-card__label {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.progress-card__number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  line-height: 1;
}

.progress-card__number strong {
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7vw, 4.75rem);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
}

.progress-card__number span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  font-weight: 550;
}

.progress-card__message {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 510;
  line-height: 1.6;
}

.progress-track {
  height: 8px;
  margin-top: auto;
  padding: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255, 255, 255, 0.22) calc(25% - 1px),
      rgba(255, 255, 255, 0.22) 25%
    ),
    rgba(255, 255, 255, 0.11);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-track__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #66c49f, var(--accent-bright));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(120, 200, 169, 0.35);
  transition: width 360ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

.panel {
  margin: 0;
  padding: 23px 24px;
  background: var(--surface);
  border: 1px solid rgba(207, 218, 211, 0.92);
  border-radius: var(--radius-shell);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.94) inset, var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.add-panel {
  grid-column: 1;
  grid-row: 2;
  padding-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 247, 0.9)),
    var(--surface);
}

.habits-panel {
  grid-column: 1;
  grid-row: 3;
  min-height: 300px;
}

.week-panel {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading > div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 520;
  white-space: nowrap;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 3px 10px;
  color: var(--ink-soft);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 680;
  white-space: nowrap;
}

.add-form {
  display: flex;
  gap: 10px;
}

.add-form input {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 15px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  box-shadow: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.add-form input::placeholder {
  color: var(--muted-light);
}

.add-form input:hover {
  border-color: var(--line-strong);
}

.add-form input:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(38, 114, 93, 0.1);
}

.add-form input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(184, 83, 75, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 680;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.button:active:not(:disabled) {
  transform: translateY(1px);
}

.button--primary {
  min-width: 92px;
  height: 50px;
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 9px 20px rgba(38, 114, 93, 0.18);
}

.button--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 11px 24px rgba(38, 114, 93, 0.23);
}

.button--ghost {
  min-height: 32px;
  padding: 0 9px;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.button--ghost:hover {
  color: var(--accent-strong);
  background: var(--accent-pale);
}

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

.button--danger:hover {
  color: #9c443e;
  background: var(--danger-soft);
}

.form-message {
  min-height: 18px;
  margin: 8px 2px 0;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 540;
}

.habit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.habit-item {
  position: relative;
  display: grid;
  grid-template-columns: 20px 42px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 70px;
  padding: 10px 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.habit-item:first-child {
  border-top: 1px solid transparent;
}

.habit-item:last-child {
  border-bottom-color: transparent;
}

.habit-item:hover {
  background: #f8fbf9;
}

.habit-item.is-complete {
  background: linear-gradient(90deg, rgba(228, 240, 235, 0.62), rgba(241, 247, 244, 0.42));
  border-bottom-color: #cfe4db;
}

.habit-item.is-dragging {
  opacity: 0.42;
}

.habit-item.is-drag-over {
  background: var(--accent-pale);
  border-bottom-color: var(--accent);
}

.drag-handle {
  color: #aeb9b4;
  cursor: grab;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: -0.22em;
  user-select: none;
}

.drag-handle:active {
  cursor: grabbing;
}

.check-button {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: transparent;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 11px;
  box-shadow: none;
  cursor: pointer;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.check-button span {
  font-size: 1.05rem;
  font-weight: 800;
  transform: translateY(-1px) scale(0.68);
  transition: transform 190ms cubic-bezier(0.2, 1.6, 0.5, 1);
}

.check-button:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(38, 114, 93, 0.08);
  transform: translateY(-1px);
}

.habit-item.is-complete .check-button {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 14px rgba(38, 114, 93, 0.18);
}

.habit-item.is-complete .check-button span {
  transform: translateY(-1px) scale(1);
}

.habit-name {
  min-width: 0;
  padding: 5px 12px 5px 3px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.habit-item.is-complete .habit-name {
  color: #72807b;
  text-decoration: line-through;
  text-decoration-color: rgba(38, 114, 93, 0.4);
  text-decoration-thickness: 1px;
}

.habit-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.habit-actions .move-button {
  display: none;
}

.inline-edit {
  display: flex;
  grid-column: 3 / -1;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding-right: 4px;
}

.inline-edit input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 0 4px rgba(38, 114, 93, 0.08);
}

.inline-edit__actions {
  display: flex;
  gap: 3px;
}

.icon-button {
  display: inline-flex;
  min-width: 34px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--muted);
  background: var(--surface-muted);
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 670;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.icon-button:hover {
  color: var(--accent-strong);
  background: var(--accent-pale);
}

.icon-button:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.icon-button--confirm {
  color: #fff;
  background: var(--accent);
}

.icon-button--confirm:hover {
  color: #fff;
  background: var(--accent-strong);
}

.habit-actions .icon-button--confirm {
  background: var(--danger);
}

.habit-actions .icon-button--confirm:hover {
  color: #fff;
  background: #9c443e;
}

.empty-state {
  padding: 32px 20px 12px;
  text-align: center;
}

.empty-state__mark {
  position: relative;
  width: 66px;
  height: 66px;
  margin: 0 auto 17px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
  transform: none;
}

.empty-state__mark::before,
.empty-state__mark::after,
.empty-state__mark span {
  position: absolute;
  display: block;
  background: var(--accent);
  border-radius: 999px;
  content: "";
}

.empty-state__mark::before {
  top: 31px;
  left: 16px;
  width: 33px;
  height: 3px;
  transform: rotate(-4deg);
}

.empty-state__mark::after {
  top: 24px;
  left: 32px;
  width: 16px;
  height: 3px;
  transform: rotate(54deg);
}

.empty-state__mark span {
  top: 17px;
  left: 18px;
  width: 3px;
  height: 20px;
  transform: rotate(-4deg);
}

.empty-state h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 680;
}

.empty-state p {
  max-width: 370px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.75;
}

.week-list {
  display: grid;
  gap: 0;
  margin-top: 2px;
}

.week-day {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  min-width: 0;
  align-items: center;
  min-height: 56px;
  padding: 9px 7px 9px 15px;
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: background-color 150ms ease, box-shadow 150ms ease;
}

.week-day:first-child {
  border-top-color: transparent;
}

.week-day::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft);
  content: "";
  transform: translateY(-50%);
}

.week-day.is-today {
  background: var(--accent-pale);
  border-top-color: transparent;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(38, 114, 93, 0.1);
  transform: none;
}

.week-day.is-today + .week-day {
  border-top-color: transparent;
}

.week-day.is-today::before {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(38, 114, 93, 0.12);
}

.week-day__name {
  display: block;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 680;
}

.week-day__date {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.week-day__score {
  display: block;
  justify-self: end;
  padding: 4px 7px;
  color: var(--ink-soft);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.week-day.is-today .week-day__name {
  color: var(--accent-strong);
}

.week-day.is-today .week-day__date {
  color: #668278;
}

.week-day.is-today .week-day__score {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.app-footer {
  grid-column: 1 / -1;
  grid-row: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 480;
}

.app-footer span {
  color: var(--accent);
  font-size: 0.5rem;
}

.toast {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 16px;
  color: #fff;
  background: rgba(23, 49, 44, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(23, 49, 44, 0.2);
  font-size: 0.8rem;
  font-weight: 540;
  animation: toast-in 220ms ease both;
}

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

[hidden] {
  display: none !important;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .app-shell {
    display: block;
    width: min(calc(100% - 30px), 700px);
    padding: 22px 0 18px;
  }

  .hero {
    min-height: 0;
    padding: 22px 4px 24px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero::before {
    top: 18px;
    left: 4px;
  }

  .hero::after {
    right: 4px;
    bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2rem, 7.6vw, 2.8rem);
  }

  .progress-card,
  .panel {
    margin-bottom: 16px;
  }

  .progress-card {
    min-height: 0;
    padding: 22px 22px 21px;
    border-radius: 22px;
  }

  .progress-card__content {
    gap: 8px;
  }

  .progress-card__message {
    max-width: none;
  }

  .progress-track {
    margin-top: 22px;
  }

  .week-panel {
    display: block;
  }
}

@media (max-width: 700px) {
  .panel {
    padding: 21px 18px;
    border-radius: 20px;
  }

  .add-panel {
    padding-bottom: 16px;
  }

  .habit-item {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 76px;
    padding: 10px 0;
    gap: 2px;
  }

  .drag-handle {
    display: none;
  }

  .check-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .habit-name,
  .inline-edit {
    grid-column: 1;
    grid-row: 1;
    padding-right: 7px;
  }

  .habit-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
    min-height: 32px;
    padding-top: 5px;
    border-top: 1px solid var(--line);
  }

  .habit-actions .move-button {
    display: inline-flex;
  }

  .inline-edit {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding-right: 8px;
  }

  .inline-edit__actions {
    justify-content: flex-end;
  }

  .week-day {
    grid-template-columns: 46px minmax(0, 1fr) auto;
  }
}

@media (max-width: 430px) {
  .app-shell {
    width: calc(100% - 24px);
    padding-top: 18px;
  }

  .hero::after {
    width: 66px;
    height: 66px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .progress-card {
    padding: 20px 18px;
  }

  .progress-card__number strong {
    font-size: 3.6rem;
  }

  .add-form {
    flex-direction: column;
  }

  .button--primary {
    width: 100%;
  }

  .section-note {
    display: none;
  }

  .habit-actions .icon-button {
    min-width: 44px;
    height: 32px;
  }

  .week-day {
    padding-left: 13px;
  }
}

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