:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #25231f;
  background: #f7f3eb;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  background:
    radial-gradient(circle at 12% 0%, rgba(190, 119, 70, 0.1), transparent 32rem),
    #f7f3eb;
}

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  width: min(100% - 32px, 680px);
  margin: 0 auto;
  padding: calc(32px + env(safe-area-inset-top)) 0 calc(112px + env(safe-area-inset-bottom));
}

.topbar > div,
.view,
.summary-card,
.monthly-summary__item,
.career-summary,
.year-summary,
.archive-summary,
.book-metric,
.field,
.dialog__action-group {
  min-width: 0;
}

.topbar,
.section-heading,
.dialog__header,
.dialog__actions,
.dialog__action-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.eyebrow {
  margin-bottom: 6px;
  color: #8d5b38;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-card {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  padding: clamp(28px, 8vw, 52px);
  border: 1px solid rgba(116, 77, 50, 0.13);
  border-radius: 28px;
  background: #2f4538;
  box-shadow: 0 18px 50px rgba(60, 53, 43, 0.12);
  color: #fffdf7;
}

.summary-card::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.summary-card__date {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.summary-card__total {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(3rem, 13vw, 5.25rem);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.summary-card__total span {
  font-family: inherit;
  font-size: 0.28em;
  letter-spacing: 0;
}

.summary-card__label {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.records-section {
  margin-top: 38px;
}

.today-month-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid #e0d8cc;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
}

.today-month-summary span {
  color: #7d7468;
  font-size: 0.86rem;
  font-weight: 700;
}

.today-month-summary strong {
  min-width: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(1.2rem, 5vw, 1.65rem);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  text-align: right;
}

.count-label {
  color: #857e73;
  font-size: 0.9rem;
}

.empty-state {
  margin-top: 14px;
  padding: 32px 24px;
  border: 1px dashed #cfc6b7;
  border-radius: 18px;
  text-align: center;
}

.empty-state p {
  margin-bottom: 8px;
  font-weight: 700;
}

.empty-state span {
  color: #857e73;
  font-size: 0.9rem;
}

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

.record-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  width: 100%;
  padding: 19px 18px;
  border: 1px solid #e4ddd1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.record-row:hover {
  transform: translateY(-1px);
  border-color: #c8b6a5;
  background: #fff;
}

.record-row__title {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-row__count {
  margin-left: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.record-row__arrow {
  margin-left: 12px;
  color: #998f81;
  font-size: 1.45rem;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
}

.button:focus-visible,
.icon-button:focus-visible,
.record-row:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(175, 93, 44, 0.3);
  outline-offset: 2px;
}

.button--primary {
  background: #b66234;
  box-shadow: 0 8px 20px rgba(154, 75, 34, 0.2);
  color: white;
}

.button--quiet {
  background: #ece4d8;
  color: #4d463d;
}

.button--danger {
  background: #f6e4df;
  color: #9a3826;
}

.action-button {
  width: 100%;
  min-height: 56px;
  margin-top: 28px;
  font-size: 1rem;
}

.app-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: #695e51;
  font-size: 0.9rem;
  text-align: center;
}

.month-switcher {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.month-switcher h2 {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  text-align: center;
}

.month-switcher__button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #dfd5c8;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: #514a41;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.monthly-summary {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #e0d8cc;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.monthly-summary__item {
  display: grid;
  gap: 7px;
  padding: 0 18px;
}

.monthly-summary__item:first-child {
  padding-left: 0;
}

.monthly-summary__item:last-child {
  padding-right: 0;
}

.monthly-summary__item span {
  color: #82796c;
  font-size: 0.8rem;
}

.monthly-summary__item strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.monthly-summary__divider {
  background: #e1d8cb;
}

.calendar {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #e1d8cb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.calendar__weekdays,
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar__weekdays {
  margin-bottom: 8px;
  color: #887f73;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.calendar__blank {
  min-width: 0;
}

.calendar-day {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 74px;
  padding: 9px 6px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f7f3eb;
  color: #2d2a26;
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.calendar-day:hover {
  transform: translateY(-1px);
  border-color: #cdbdac;
  background: white;
}

.calendar-day.is-today {
  border-color: #9d6b48;
  box-shadow: inset 0 0 0 1px rgba(157, 107, 72, 0.18);
}

.calendar-day__number {
  font-size: 0.82rem;
  font-weight: 800;
}

.calendar-day__count {
  min-width: 0;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-align: center;
}

.calendar-day.is-zero .calendar-day__count {
  color: #aaa195;
  font-weight: 550;
}

.back-button {
  margin-top: 30px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #7a573f;
  cursor: pointer;
  font-weight: 750;
}

.day-detail__heading {
  margin-top: 22px;
  padding: 26px;
  border-radius: 22px;
  background: #eef1eb;
}

.day-detail__heading h2 {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
}

.day-detail__total {
  margin: 12px 0 0;
  color: #53675a;
  font-size: 1rem;
  font-weight: 750;
}

.day-detail__heading + .empty-state,
.day-detail__heading + .empty-state + .record-list,
.day-detail__heading + .record-list {
  margin-top: 20px;
}

.main-nav {
  position: fixed;
  z-index: 10;
  right: max(16px, calc((100vw - 680px) / 2));
  bottom: max(10px, env(safe-area-inset-bottom));
  left: max(16px, calc((100vw - 680px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(116, 91, 70, 0.15);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 40px rgba(56, 48, 39, 0.16);
  backdrop-filter: blur(16px);
}

.career-summary {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding: 30px;
  border-radius: 24px;
  background: #2f4538;
  color: white;
}

.career-summary span,
.career-summary small {
  color: rgba(255, 255, 255, 0.65);
}

.career-summary strong {
  min-width: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(2.1rem, 9vw, 3.8rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.year-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 25px;
  border: 1px solid #e0d8cc;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.68);
}

.year-summary__heading,
.year-summary__secondary,
.yearly-month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.year-summary__heading,
.year-summary__secondary {
  color: #82796c;
  font-size: 0.84rem;
}

.year-summary > strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(2.2rem, 9vw, 3.7rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.year-summary__secondary {
  padding-top: 13px;
  border-top: 1px solid #e4dcd1;
}

.year-summary__secondary b {
  color: #423d36;
  font-size: 1rem;
}

.historical-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8ede7;
  color: #45604e;
  font-size: 0.74rem;
  font-weight: 800;
}

.historical-note {
  margin: 14px 0 0;
  padding: 15px 17px;
  border-radius: 14px;
  background: #eee9e0;
  color: #6e665a;
  font-size: 0.88rem;
  line-height: 1.55;
}

.yearly-months {
  margin-top: 30px;
}

.yearly-month-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.yearly-month-row {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e1d9cd;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.68);
}

.yearly-month-row span {
  color: #71695e;
  font-size: 0.86rem;
}

.yearly-month-row strong {
  min-width: 0;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  text-align: right;
}

.yearly-month-row.is-future {
  opacity: 0.48;
}

.main-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #7e7569;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
}

.main-nav__item.is-active {
  background: #2f4538;
  color: white;
}

.main-nav__icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.72rem;
}

.dialog {
  width: min(calc(100% - 32px), 520px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 30px 100px rgba(33, 28, 23, 0.28);
}

.dialog::backdrop {
  background: rgba(32, 29, 25, 0.52);
  backdrop-filter: blur(4px);
}

.dialog__content {
  display: grid;
  gap: 22px;
  max-height: min(86vh, 760px);
  overflow-y: auto;
  padding: 28px;
}

.archive-summary {
  display: grid;
  gap: 7px;
  margin-top: 38px;
  padding: 30px;
  border-radius: 24px;
  background: #2f4538;
  color: white;
}

.archive-summary span,
.archive-summary small {
  color: rgba(255, 255, 255, 0.65);
}

.archive-summary strong {
  min-width: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(2.1rem, 9vw, 3.8rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.book-groups {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.book-group .section-heading {
  margin-bottom: 13px;
}

.book-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid #e1d9cd;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.book-card:hover {
  transform: translateY(-1px);
  border-color: #c8b6a5;
  background: white;
}

.book-card__title {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.book-card__count {
  min-width: 0;
  margin-left: 14px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.book-card__arrow {
  margin-left: 11px;
  color: #998f81;
  font-size: 1.45rem;
}

.book-detail__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 20px;
}

.book-detail__heading .eyebrow {
  flex-basis: 100%;
  margin-bottom: 0;
}

.book-detail__heading h2 {
  overflow-wrap: anywhere;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6ebe4;
  color: #49604f;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-badge[data-status="paused"] {
  background: #eee8df;
  color: #756552;
}

.status-badge[data-status="completed"] {
  background: #e5ebe9;
  color: #47615b;
}

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

.book-metric {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 20px;
  border: 1px solid #e1d8cb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.book-metric--primary {
  grid-column: 1 / -1;
  padding: 26px;
  background: #eef1eb;
}

.book-metric span {
  color: #80776a;
  font-size: 0.8rem;
}

.book-metric strong {
  min-width: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.book-metric--primary strong {
  font-size: clamp(2.1rem, 9vw, 3.4rem);
}

.recent-records {
  margin-top: 34px;
}

.delete-warning {
  padding: 18px;
  border-radius: 14px;
  background: #f6eee9;
  color: #5f463b;
}

.delete-warning p {
  margin-bottom: 10px;
}

.delete-warning strong {
  color: #8d382a;
  font-size: 0.9rem;
}

.dialog__header h2 {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 1.55rem;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f0e9de;
  color: #61584c;
  cursor: pointer;
  font-size: 1.5rem;
}

.field {
  display: grid;
  gap: 9px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #d8cfc2;
  border-radius: 12px;
  background: white;
  color: #292621;
}

.field small {
  color: #877d70;
  font-size: 0.8rem;
  font-weight: 400;
}

.date-chip {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef1eb;
  color: #46604f;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-error {
  min-height: 20px;
  margin: -12px 0 0;
  color: #a23928;
  font-size: 0.86rem;
}

.visually-hidden {
  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;
}

@media (max-width: 540px) {
  .app-shell {
    width: min(100% - 20px, 680px);
    padding: calc(18px + env(safe-area-inset-top)) 0 calc(108px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  .topbar {
    align-items: flex-end;
    gap: 8px;
  }

  .topbar .button {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .summary-card {
    margin-top: 20px;
    padding: 24px;
    border-radius: 20px;
  }

  .summary-card__date {
    margin-bottom: 17px;
    font-size: 0.88rem;
  }

  .summary-card__total {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .records-section {
    margin-top: 22px;
  }

  .record-row {
    min-height: 58px;
    padding: 14px;
  }

  .record-row__count {
    margin-left: 10px;
    font-size: 0.9rem;
  }

  .action-button {
    min-height: 54px;
    margin-top: 18px;
  }

  .today-month-summary {
    padding: 15px 17px;
  }

  .month-switcher {
    margin-top: 24px;
  }

  .monthly-summary {
    margin-top: 18px;
    padding: 18px;
  }

  .monthly-summary__item {
    padding: 0 12px;
  }

  .calendar {
    margin-top: 18px;
    padding: 8px;
  }

  .calendar__weekdays,
  .calendar__grid {
    gap: 3px;
  }

  .calendar-day {
    min-height: 64px;
    padding: 7px 3px;
    border-radius: 9px;
    text-align: center;
  }

  .calendar-day__number,
  .calendar-day__count {
    font-size: 0.68rem;
  }

  .career-summary,
  .archive-summary {
    margin-top: 22px;
    padding: 24px;
  }

  .career-summary strong,
  .archive-summary strong {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .year-summary {
    padding: 21px;
  }

  .year-summary > strong {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  .yearly-month-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .yearly-month-row {
    padding: 13px 12px;
  }

  .yearly-month-row strong {
    font-size: 0.84rem;
  }

  .dialog__actions--split {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .dialog {
    width: min(calc(100% - 16px), 520px);
    max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 16px);
    border-radius: 20px;
  }

  .dialog__content {
    gap: 18px;
    max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 16px);
    padding: 20px;
    overscroll-behavior: contain;
    scroll-padding-bottom: 88px;
  }

  .dialog__actions {
    position: sticky;
    bottom: -20px;
    z-index: 1;
    margin: 0 -4px;
    padding: 12px 4px 4px;
    background: #fffdf8;
  }

  .field input,
  .field select {
    min-width: 0;
    min-height: 52px;
    font-size: 16px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .book-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 44%) auto;
    min-height: 68px;
    padding: 14px;
  }

  .book-card__count {
    margin-left: 8px;
    font-size: 0.82rem;
  }

  .book-groups {
    gap: 28px;
    margin-top: 28px;
  }

  .book-detail__heading h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .main-nav {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(8px, env(safe-area-inset-left));
    gap: 4px;
    padding: 6px;
    border-radius: 18px;
  }

  .main-nav__item {
    flex-direction: column;
    gap: 2px;
    min-height: 56px;
    font-size: 0.72rem;
  }

  .main-nav__icon {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }

  .dialog__action-group {
    width: 100%;
  }

  .dialog__action-group .button {
    flex: 1;
  }
}

@media (max-width: 340px) {
  .app-shell {
    width: calc(100% - 12px);
  }

  .summary-card {
    padding: 20px;
  }

  .calendar {
    padding: 6px;
  }

  .calendar__weekdays,
  .calendar__grid {
    gap: 2px;
  }

  .calendar-day {
    min-height: 60px;
    padding-inline: 2px;
  }

  .calendar-day__number,
  .calendar-day__count {
    font-size: 0.62rem;
  }

  .monthly-summary {
    padding: 15px;
  }

  .monthly-summary__item {
    padding: 0 8px;
  }

  .yearly-month-row {
    padding-inline: 9px;
  }

  .dialog {
    width: calc(100% - 8px);
  }
}
