:root {
  --bg: #eef2f5;
  --card: #ffffff;
  --ink: #1c2b36;
  --muted: #5f7180;
  --accent: #2e6da4;
  --accent-soft: #e6f0fa;
  --warn: #b94d48;
  --ok: #2f8f67;
  --line: #cfd9e3;
  --radius: 16px;
  --shadow: 0 8px 18px rgba(20, 42, 62, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

.app {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 16px 14px 28px;
}

.hero {
  background: linear-gradient(130deg, #3d78ad, #2b5f92);
  color: #f7fbff;
  border: 1px solid #d3dfeb;
  border-radius: 24px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}

.hero p {
  margin: 8px 0 0;
  opacity: 0.95;
}

.section {
  margin-top: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.section h2 {
  margin: 2px 0 10px;
  font-size: 1.1rem;
}

.hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 12px;
}

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

label {
  font-size: 0.84rem;
  color: var(--muted);
}

input,
select,
button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #7ea7cf;
  box-shadow: 0 0 0 3px rgba(126, 167, 207, 0.25);
}

button {
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: #f6fffc;
  font-weight: 600;
}

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

button.secondary {
  background: #f2f6fa;
  color: var(--ink);
  border: 1px solid var(--line);
}

.delete {
  background: #c54444;
  color: #ffffff;
  border: 1px solid #a93434;
}

.delete-soft {
  background: #f2f4f6;
  color: #5d6e7b;
  border: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cards {
  display: grid;
  gap: 10px;
}

.actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: flex-start;
}

.actions button {
  width: auto;
  padding: 9px 10px;
}

.btn-compact {
  width: auto;
  font-size: 0.82rem;
  padding: 7px 11px;
}

.item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(18, 26, 34, 0.06);
  display: grid;
  gap: 8px;
}

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

.item-title {
  margin: 0;
  font-size: 1rem;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.tag {
  display: inline-block;
  font-size: 0.74rem;
  background: var(--accent-soft);
  color: #2b5f92;
  border-radius: 999px;
  padding: 4px 8px;
}

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.status {
  display: flex;
  gap: 8px;
}

.status button {
  background: #f2f6fa;
  color: #32495b;
}

.status button.active-yes {
  background: #e4f3ec;
  color: var(--ok);
}

.status button.active-no {
  background: #fcebe9;
  color: var(--warn);
}

.status button.active-clear {
  border: 1px solid var(--line);
}

.diary-taken-btn {
  width: auto;
  min-width: 126px;
  border: 1px solid #c8d8ea;
  background: #e8f0fb;
  color: #2b5f92;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.diary-taken-btn.state-pending {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.diary-taken-btn.state-taken {
  border-color: #2f8f67;
  background: #2f8f67;
  color: #f6fffc;
}

.diary-summary-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-page="diario"] .status {
  justify-content: flex-start;
}

.empty {
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

.subline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.section-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.section-toolbar > button {
  width: auto;
  margin-left: auto;
}

.view-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-inline label {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.view-inline select {
  width: auto;
  min-width: 152px;
  padding: 6px 10px;
  font-size: 0.8rem;
}

.subline input {
  max-width: 190px;
}

.subline-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.summary {
  font-size: 1.32rem;
  color: var(--ink);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2;
}

.filters {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.calendar-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
}

.calendar-toggle {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.diary-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.diary-view-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.diary-view-inline label {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.diary-view-inline select {
  width: auto;
  min-width: 150px;
  padding: 6px 10px;
  font-size: 0.8rem;
}

.diary-toolbar #toggle-calendar-btn {
  margin-left: auto;
}

.diary-view-toggle {
  display: flex;
  gap: 8px;
  margin: 0 0 10px;
}

.diary-view-btn {
  flex: 1;
}

.diary-view-btn.active {
  background: var(--accent);
  color: #f7f9fb;
  border-color: #2a6293;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.calendar-month {
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  flex: 1;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

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

.calendar-day {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 5px 4px;
  display: grid;
  gap: 2px;
  text-align: center;
}

.calendar-day.empty-day {
  border: none;
  background: transparent;
}

.calendar-day .day-num {
  font-weight: 700;
  font-size: 0.8rem;
}

.calendar-day .day-meta {
  font-size: 0.64rem;
  color: var(--muted);
}

.calendar-day.done {
  background: #e8f7ef;
  border-color: #95d2b0;
}

.calendar-day.partial {
  background: #fff6e4;
  border-color: #f0d3a0;
}

.calendar-day.missed {
  background: #fcebe9;
  border-color: #efc0b3;
}

.calendar-day.today {
  box-shadow: inset 0 0 0 1px var(--accent);
}

.calendar-day.selected {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

.therapy-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 10px;
}

.therapy-filter-chip {
  width: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 600;
}

.therapy-filter-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.therapy-block {
  padding: 10px;
}

.therapy-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.therapy-block-list {
  display: grid;
  gap: 8px;
}

.therapy-entry {
  border: 1px solid rgba(18, 33, 34, 0.12);
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  display: grid;
  gap: 6px;
}

.therapy-entry .item-title {
  font-size: 0.9rem;
}

.therapy-entry .meta {
  font-size: 0.78rem;
}

.therapy-entry .actions {
  justify-content: flex-start;
}

.therapy-actions {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
}

.therapy-actions .btn-compact {
  padding: 4px 7px;
  border-radius: 7px;
  font-size: 0.72rem;
}

body[data-page="terapia"] #therapy-list.therapy-list-mode {
  grid-template-columns: 1fr;
}

.therapy-flat-item {
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
}

.therapy-flat-main {
  display: grid;
  gap: 4px;
}

.therapy-flat-top {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.therapy-flat-item .edit-area {
  grid-column: 1 / -1;
}

body[data-page="terapia"] #therapy-list.therapy-list-mode .item-title {
  font-size: 1.16rem;
  line-height: 1.08;
}

body[data-page="terapia"] #therapy-list.therapy-list-mode .meta {
  font-size: 0.84rem;
}

body[data-page="terapia"] #therapy-list .therapy-entry .item-title {
  font-size: 1.1rem;
  line-height: 1.05;
}

body[data-page="terapia"] #therapy-list .therapy-entry .meta {
  font-size: 0.82rem;
}

.diary-entry {
  gap: 8px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.diary-entry.is-taken {
  background: #e4f3ec;
  border-color: #95d2b0;
}

.diary-entry .status {
  justify-content: flex-start;
}

.checklist-card {
  padding: 9px;
}

.checklist-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(18, 33, 34, 0.15);
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
}

.checklist-item.done {
  background: #e8f7ef;
  border-color: #95d2b0;
}

.checklist-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.checklist-name {
  font-family: "Chakra Petch", "Titillium Web", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.05;
}

.checklist-note {
  font-size: 0.76rem;
  color: var(--muted);
}

.checklist-item.done .checklist-note {
  display: none;
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  accent-color: #2f8f67;
  flex: 0 0 auto;
}

.block-mattina {
  background: #f7fbff;
  border-color: #dbe8f5;
}

.block-pranzo {
  background: #f2f8fe;
  border-color: #d5e4f2;
}

.block-pomeriggio {
  background: #f4f6fb;
  border-color: #d9dfeb;
}

.block-sera {
  background: #f7f4fb;
  border-color: #dfd8ea;
}

.block-notte {
  background: #f3f5f8;
  border-color: #d6dbe3;
}

.edit-area {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.edit-form {
  margin-top: 2px;
}

.form-wrap {
  margin-top: 10px;
}

.hidden {
  display: none;
}

body[data-page="armadietto"] #cabinet-list {
  grid-template-columns: 1fr;
}

body[data-page="armadietto"] #cabinet-list.layout-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="armadietto"] #cabinet-list .item {
  padding: 8px;
  gap: 6px;
}

body[data-page="armadietto"] #cabinet-list .item-title {
  font-size: 0.92rem;
}

body[data-page="armadietto"] #cabinet-list .meta {
  font-size: 0.78rem;
}

body[data-page="armadietto"] #cabinet-list .tag {
  font-size: 0.68rem;
  padding: 3px 7px;
}

body[data-page="armadietto"] #cabinet-list .actions {
  justify-content: flex-start;
}

body[data-page="armadietto"] .cabinet-toolbar {
  margin-bottom: 12px;
}

body[data-page="armadietto"] #cabinet-list .cabinet-edit-btn {
  padding: 4px 7px;
  border-radius: 7px;
  font-size: 0.72rem;
}

body[data-page="terapia"] #therapy-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

body[data-page="terapia"] #therapy-list.layout-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.therapy-print-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

body[data-page="diario"] #diary-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

body[data-page="diario"] #diary-list.layout-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="diario"] .calendar-card {
  max-width: 620px;
  margin-left: auto;
}

body[data-page="diario"] #diary-list.checklist-mode {
  grid-template-columns: 1fr;
}

body[data-page="diario"] #diary-list.checklist-mode.layout-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bottom-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(760px, 100%);
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: calc(10px + env(safe-area-inset-top)) 12px 10px;
  background: rgba(219, 222, 226, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid #cfdae5;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(36, 58, 80, 0.12);
}

.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #223647;
  background: #e6eaee;
  border: 1px solid #b5c1cc;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav-item.active {
  background: #2e6da4;
  color: #f7f9fb;
  border-color: #255a8a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.nav-item:hover {
  transform: translateY(-1px);
}

.nav-item:focus-visible {
  outline: 2px solid #7ea7cf;
  outline-offset: 1px;
}

@media (min-width: 760px) {
  .app {
    padding-top: 26px;
  }

  .bottom-nav {
    margin-top: 16px;
  }
}

.home-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.home-stat-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: var(--card);
}

.home-stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.home-stat-value {
  margin: 2px 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.home-trend-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
}

.home-trend-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.home-trend-head h3 {
  margin: 0;
  font-size: 0.95rem;
}

.home-calendar-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.home-calendar-month {
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
}

.home-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
}

.home-month-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.home-month-day {
  min-height: 54px;
  border: 1px solid #cfd8de;
  border-radius: 10px;
  padding: 5px 4px;
  background: #f8f9fa;
  display: grid;
  gap: 1px;
  align-content: center;
  justify-items: center;
}

.home-month-day.empty {
  border: none;
  background: transparent;
}

.home-month-day.no-data {
  background: #f3f5f7;
  border-color: #d7dfe5;
}

.home-month-day.good {
  background: #dff4e8;
  border-color: #79c79f;
}

.home-month-day.warn {
  background: #fff2cc;
  border-color: #e7c96d;
}

.home-month-day.bad {
  background: #ffe1dc;
  border-color: #de8a7f;
}

.home-month-day.today {
  box-shadow: inset 0 0 0 2px var(--accent);
}

.home-month-day-num {
  font-weight: 700;
  font-size: 0.88rem;
}

.home-month-day-meta {
  font-size: 0.7rem;
  color: #45525c;
}

.home-calendar-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #314049;
}

.home-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #c4ccd3;
  display: inline-block;
}

.legend-dot.good {
  background: #79c79f;
  border-color: #5aa985;
}

.legend-dot.warn {
  background: #f0cd68;
  border-color: #d2aa45;
}

.legend-dot.bad {
  background: #e19588;
  border-color: #c06d60;
}

.home-subtitle {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.home-notes-form {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.home-note-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  resize: vertical;
  min-height: 84px;
  background: #fff;
}

.home-note-input:focus {
  outline: none;
  border-color: #7ea7cf;
  box-shadow: 0 0 0 3px rgba(126, 167, 207, 0.25);
}

.home-notes-form-actions {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 8px;
  align-items: center;
}

.home-notes-form-actions .btn-compact {
  width: auto;
}

.home-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-note {
  border: 1px solid #e3d7ac;
  border-radius: 12px;
  background: linear-gradient(165deg, #fff9df, #fff2bd);
  padding: 10px;
  box-shadow: 0 5px 12px rgba(48, 55, 63, 0.1);
  display: grid;
  gap: 8px;
}

.home-note.is-pinned {
  border-color: #d2b96e;
  box-shadow: 0 7px 14px rgba(45, 54, 64, 0.16);
}

.home-note.is-done {
  background: linear-gradient(165deg, #f4f6f8, #e9edf1);
  border-color: #c8d3de;
}

.home-note-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.home-note-date {
  font-size: 0.74rem;
  color: #536474;
}

.home-note-text {
  margin: 0;
  color: #223545;
  white-space: pre-wrap;
  line-height: 1.3;
}

.home-note.is-done .home-note-text {
  color: #5e6d79;
  text-decoration: line-through;
}

.home-note-actions {
  justify-content: flex-start;
}

.home-note-actions .btn-compact {
  padding: 6px 9px;
  font-size: 0.75rem;
}

.home-settings-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.home-settings-right {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-square-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  min-width: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}

.home-settings-body {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.home-settings-body .hint {
  margin: 0;
  max-width: 560px;
}

.home-settings-actions {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
  justify-content: end;
}

.home-settings-actions .btn-compact {
  width: auto;
  min-width: 170px;
}

.bottom-nav {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 620px) {
  .home-dashboard-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="armadietto"] #cabinet-list.layout-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="terapia"] #therapy-list.layout-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="diario"] #diary-list.layout-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="diario"] #diary-list.checklist-mode.layout-matrix {
    grid-template-columns: 1fr;
  }

  .home-notes-form-actions {
    grid-template-columns: 1fr;
  }

  .home-notes-form-actions .btn-compact {
    width: 100%;
  }

  .home-notes-grid {
    grid-template-columns: 1fr;
  }

  .home-settings-actions {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .home-settings-actions .btn-compact {
    width: 100%;
    min-width: 0;
  }

  .home-settings-body {
    justify-items: stretch;
    text-align: left;
  }

  .home-settings-right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .home-calendar-controls {
    grid-template-columns: 1fr;
  }

  .home-calendar-controls .btn-compact {
    width: 100%;
  }
}


.app-version-badge {
  position: fixed;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  font-size: 0.72rem;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid #bac6d3;
  background: rgba(255, 255, 255, 0.92);
  color: #32485b;
  box-shadow: 0 2px 8px rgba(14, 26, 36, 0.16);
  pointer-events: none;
}
