:root {
  --bg: #f3effd;
  --bg-accent: #e7e0fb;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --task-card-width: 220px;
  --border: rgba(65, 54, 115, 0.12);
  --text: #221b42;
  --muted: #72689e;
  --primary: #203a5c;
  --primary-soft: rgba(32, 58, 92, 0.12);
  --success: #0f9f6e;
  --danger: #c73f4b;
  --shadow: 0 18px 42px rgba(42, 31, 89, 0.14);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 24rem),
    radial-gradient(circle at top right, rgba(170, 145, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, #f7f4ff 0%, var(--bg) 45%, var(--bg-accent) 100%);
  color: var(--text);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  align-items: center;
}

.auth-shell {
  justify-items: center;
}

.layout {
  display: grid;
  gap: 20px;
}

.hero-card,
.auth-card,
.setup-card {
  margin: 0 auto;
  max-width: 720px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 32px;
  animation: rise 280ms ease-out;
}

.hero-card h1,
.auth-card h1,
.setup-card h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy,
.setup-card p,
.auth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.auth-form,
.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.auth-card-compact {
  max-width: 420px;
  width: min(420px, 100%);
  padding: 24px 22px 22px;
}

.auth-card-compact h1 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1;
}

.auth-card-compact .auth-form {
  margin-top: 0;
}

.auth-card-week {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  border-radius: 16px;
  min-height: 46px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.field input[type="date"],
.field select,
.time-picker-select {
  font-variant-numeric: tabular-nums;
}

.field select,
.time-picker-select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(42, 31, 89, 0.78) 50%),
    linear-gradient(135deg, rgba(42, 31, 89, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

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

.time-picker-select {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.86);
  color: var(--text);
  border-radius: 16px;
  padding: 11px 34px 11px 14px;
  outline: none;
}

.field input::placeholder {
  color: rgba(114, 104, 158, 0.6);
}

.field input:focus,
.field select:focus,
.time-picker-select:focus,
.field textarea:focus {
  border-color: rgba(27, 110, 243, 0.48);
  box-shadow: 0 0 0 4px rgba(27, 110, 243, 0.12);
  transform: translateY(-1px);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row > * {
  min-width: 0;
}

.button-row,
.panel-actions,
.topbar-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-row {
  margin-top: 10px;
}

.btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, opacity 140ms ease;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  border: 0;
  color: #f8f6ff;
  background: linear-gradient(135deg, #203a5c 0%, #142843 100%);
  box-shadow: 0 14px 28px rgba(25, 45, 73, 0.22);
  font-weight: 700;
}

.btn-secondary {
  font-weight: 500;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px dashed rgba(45, 52, 64, 0.2);
}

.btn-link {
  padding: 0;
  min-height: auto;
  background: transparent;
  color: var(--muted);
  border: 0;
  box-shadow: none;
}

.btn-link:hover {
  color: var(--text);
  transform: none;
}

.app-frame {
  display: grid;
  gap: 18px;
  animation: rise 240ms ease-out;
  min-width: 0;
}

.topbar {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-x: clip;
}

.topbar-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.topbar-head-anchored {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: start;
  column-gap: 16px;
}

.topbar-head-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.topbar-head-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.topbar-head-right-regime {
  justify-content: flex-end;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.range-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.range-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
}

.week-range {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  margin: 8px 0 0;
}

.topbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-primary-actions,
.week-nav,
.topbar-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-flex;
}

.toolbar-project-btn {
  flex: 0 0 auto;
}

.week-nav-mobile-label,
.mobile-week-nav-btn {
  display: none;
}

.section-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(237, 232, 252, 0.9);
  border: 1px solid rgba(210, 201, 242, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.section-tab {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-tab.active {
  background: linear-gradient(135deg, #203a5c 0%, #142843 100%);
  color: #f8f6ff;
  box-shadow: 0 10px 24px rgba(25, 45, 73, 0.18);
}

.project-chip {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: var(--chip-bg, rgba(255, 255, 255, 0.72));
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 38px;
  font-size: 14px;
  font-weight: 500;
  color: var(--chip-fg, var(--muted));
  white-space: nowrap;
  box-shadow: none;
}

.project-chip.active {
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(42, 31, 89, 0.1);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.legend-row,
.status-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.toolbar-side {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
}

.week-toolbar-left,
.health-toolbar-left {
  display: grid;
  gap: 10px;
  align-items: start;
  min-width: 0;
  width: 100%;
}

.status-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease, box-shadow 140ms ease;
}

.status-chip.active {
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(42, 31, 89, 0.1);
}

.session-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  min-height: auto;
}

.session-link:hover {
  color: var(--text);
  transform: none;
}

.admin-entry-link {
  font-weight: 700;
}

.board {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.signal-board {
  align-items: stretch;
}

.regime-board-desktop {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.regime-board-grid {
  min-width: 0;
}

.health-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.health-day {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 560px;
  padding: 12px 11px;
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(42, 31, 89, 0.08);
}

.health-day-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.health-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.health-legend-empty-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.health-legend-item {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(215, 206, 243, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.health-legend-item.water {
  background: rgba(198, 227, 255, 0.62);
  color: #49719b;
}

.health-legend-item.treatment {
  background: rgba(219, 239, 212, 0.72);
  color: #53714f;
}

.health-legend-item.activity {
  background: rgba(255, 243, 193, 0.78);
  color: #7a6721;
}

.health-legend-item.sleep {
  background: rgba(255, 223, 223, 0.74);
  color: #9b5a5a;
}

.health-legend-item.meals {
  background: rgba(234, 222, 255, 0.72);
  color: #695490;
}

.health-day-pills {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.week-day-pills {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.health-day-pill {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.health-day-pill.active {
  color: var(--text);
  background: rgba(238, 233, 252, 0.96);
  box-shadow: 0 10px 20px rgba(42, 31, 89, 0.08);
}

.week-day-pill {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.week-day-pill.active {
  color: var(--text);
  background: rgba(238, 233, 252, 0.96);
  box-shadow: 0 10px 20px rgba(42, 31, 89, 0.08);
}

.toolbar-health {
  align-items: flex-start;
}

.health-spark-widget {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  background: linear-gradient(135deg, rgba(255, 250, 232, 0.98), rgba(246, 241, 255, 0.94));
  color: #6f5f2a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(42, 31, 89, 0.08);
}

.health-spark-widget strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.health-section {
  display: grid;
  gap: 7px;
  padding: 9px;
  border-radius: 16px;
  background: rgba(248, 245, 255, 0.76);
  border: 1px solid rgba(215, 206, 243, 0.82);
}

.health-section.water {
  background: rgba(239, 248, 255, 0.92);
  border-color: rgba(181, 215, 245, 0.88);
}

.health-section.treatment {
  background: rgba(244, 251, 240, 0.94);
  border-color: rgba(201, 228, 193, 0.88);
}

.health-section.activity {
  background: rgba(255, 250, 232, 0.96);
  border-color: rgba(238, 225, 162, 0.84);
}

.health-section.sleep {
  background: rgba(255, 243, 245, 0.96);
  border-color: rgba(242, 205, 212, 0.84);
}

.health-section.meals {
  background: rgba(246, 241, 255, 0.96);
  border-color: rgba(213, 198, 245, 0.9);
}

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

.health-section-head h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.health-water-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.health-water-cell {
  min-height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(181, 215, 245, 0.88);
  background: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.health-water-cell.is-filled {
  background: linear-gradient(135deg, rgba(126, 195, 255, 0.36) 0%, rgba(185, 222, 255, 0.72) 100%);
  color: #305b88;
  border-color: rgba(120, 179, 235, 0.62);
}

.health-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.health-toggle {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(215, 206, 243, 0.48);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
}

.health-toggle.active {
  color: #4b4277;
  background: rgba(243, 238, 255, 0.96);
}

.health-sleep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.health-sleep-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(242, 205, 212, 0.84);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.health-sleep-icon {
  color: #bb6678;
  font-size: 13px;
  line-height: 1;
}

.health-sleep-card strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.health-meals {
  align-content: start;
}

.health-settings-grid {
  display: grid;
  gap: 12px;
}

.health-settings-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(248, 245, 255, 0.76);
}

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

.health-settings-card-head h3 {
  margin: 0;
  font-size: 1rem;
}

.modal-sparks {
  width: min(720px, 100%);
}

.modal-spark-extra {
  width: min(1180px, 100%);
}

.spark-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.spark-summary-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(248, 245, 255, 0.72);
}

.spark-summary-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.spark-summary-card strong {
  color: var(--text);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.spark-summary-balance {
  background: linear-gradient(135deg, rgba(255, 250, 232, 0.98), rgba(246, 241, 255, 0.95));
  border-color: rgba(238, 225, 162, 0.84);
}

.spark-settings-form,
.spark-spend-form {
  margin-top: 16px;
}

.spark-extra-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(238, 225, 162, 0.84);
  background: linear-gradient(135deg, rgba(255, 250, 232, 0.94), rgba(255, 255, 255, 0.78));
}

.spark-extra-entry div {
  display: grid;
  gap: 3px;
}

.spark-extra-entry strong {
  color: var(--text);
  font-size: 1rem;
}

.spark-extra-entry span {
  color: var(--muted);
  font-size: 0.9rem;
}

.spark-extra-entry .btn {
  min-height: 38px;
  gap: 8px;
}

.spark-awards-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(255, 255, 255, 0.68);
}

.spark-awards-panel h3,
.spark-spend-form h3 {
  margin: 0;
  font-size: 1rem;
}

.spark-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.spark-award-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid rgba(214, 206, 247, 0.68);
  background: rgba(248, 245, 255, 0.72);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.spark-award-row-conditional {
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: end;
}

.spark-award-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.spark-award-row-conditional .spark-award-title {
  grid-column: 1 / -1;
}

.spark-award-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.spark-award-time,
.spark-award-amount {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.spark-award-time span,
.spark-award-amount span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.spark-award-row input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  text-align: center;
}

.spark-spend-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.spark-spend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(248, 245, 255, 0.62);
}

.spark-spend-row div {
  min-width: 0;
}

.spark-spend-row strong {
  color: var(--text);
  font-size: 1rem;
}

.spark-spend-row span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.spark-spend-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.spark-extra-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(238, 225, 162, 0.84);
  background: rgba(255, 250, 232, 0.9);
  color: var(--muted);
  font-weight: 700;
}

.spark-extra-summary strong {
  color: var(--text);
  font-size: 1.1rem;
}

.spark-extra-period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.spark-extra-period strong {
  min-width: 180px;
  text-align: center;
  color: var(--text);
  font-size: 1rem;
}

.spark-extra-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  border: 1px solid rgba(214, 206, 247, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.spark-extra-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.spark-extra-table th,
.spark-extra-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(214, 206, 247, 0.52);
  text-align: center;
  vertical-align: middle;
}

.spark-extra-table th {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.spark-extra-table tr:last-child td {
  border-bottom: 0;
}

.spark-extra-title-cell {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 190px;
  min-width: 190px;
  background: rgba(255, 255, 255, 0.96);
  text-align: left !important;
}

.spark-extra-action-cell {
  width: 86px;
  min-width: 86px;
}

.spark-extra-title-input {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(214, 206, 247, 0.86);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 0 10px;
}

.spark-extra-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.spark-extra-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.spark-extra-check span {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.spark-extra-check input:checked + span {
  border-color: rgba(238, 225, 162, 0.98);
  background: rgba(255, 250, 232, 0.98);
}

.spark-extra-check input:checked + span::after {
  content: "✓";
}

.spark-extra-check input:disabled + span {
  opacity: 0.42;
  cursor: not-allowed;
}

.spark-extra-mobile {
  display: none;
}

.spark-extra-mobile-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.spark-extra-mobile-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(214, 206, 247, 0.72);
  border-radius: 16px;
  background: rgba(248, 245, 255, 0.66);
}

.spark-extra-check-mobile {
  width: 38px;
  height: 38px;
}

.spark-extra-check-mobile span {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}

.meal-list {
  display: grid;
  gap: 8px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.meal-row {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid rgba(213, 198, 245, 0.64);
  background: rgba(255, 255, 255, 0.84);
  min-height: 46px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.meal-row.done {
  border-color: rgba(190, 173, 239, 0.72);
}

.meal-row-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.meal-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.meal-time-pill {
  min-width: 48px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(213, 198, 245, 0.72);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f65a1;
  font-size: 11px;
  font-weight: 500;
}

.meal-time-pill.filled {
  background: rgba(233, 224, 255, 0.92);
  border-color: rgba(190, 173, 239, 0.76);
}

.meal-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meal-row.empty .meal-note {
  display: none;
}

.meal-row.snack .meal-row-top {
  grid-template-columns: 1fr;
}

.meal-row.snack {
  min-height: 72px;
  gap: 6px;
  align-content: start;
}

.meal-row.snack .meal-name {
  line-height: 1.2;
}

.meal-row.snack .meal-note {
  margin-top: 2px;
  line-height: 1.35;
  white-space: pre-wrap;
}

.day-column {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 228px;
  padding: 12px 11px;
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(42, 31, 89, 0.08);
}

.day-column.is-drop-target,
.task-list.is-drop-target,
.inbox-panel.is-drop-target,
.inbox-list.is-drop-target,
.task-card.is-drop-target {
  outline: 2px dashed rgba(123, 97, 255, 0.24);
  outline-offset: 2px;
}

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

.day-head > div:first-child {
  min-width: 0;
}

.day-name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.day-date {
  color: var(--muted);
  font-size: 12px;
}

.day-overflow {
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 231, 252, 0.96);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  border: 1px solid rgba(214, 206, 247, 0.95);
  box-shadow: 0 8px 18px rgba(42, 31, 89, 0.08);
  flex: 0 0 22px;
}

.day-overflow.is-empty {
  visibility: hidden;
}

.task-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-height: 56px;
  height: 348px;
  overflow-y: auto;
  padding: 0;
  border-radius: 14px;
  scrollbar-width: thin;
  transition: background 140ms ease, outline-color 140ms ease;
}

.signal-board .day-column {
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 296px;
  height: 100%;
}

.regime-board .day-column {
  grid-template-rows: auto;
  min-height: auto;
  height: auto;
  gap: 10px;
}

.regime-day-column {
  align-content: start;
}

.regime-shared-axis-column {
  --regime-slot-height: 28px;
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

.regime-shared-axis-top-spacer {
  min-height: 78px;
}

.regime-shared-axis-body {
  display: grid;
  grid-template-rows: repeat(var(--regime-slot-count), var(--regime-slot-height));
  align-items: start;
}

.regime-shared-axis-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: rgba(121, 112, 167, 0.62);
  font-size: 9px;
  line-height: 1;
  padding-right: 6px;
}

.regime-shared-axis-row.is-hour {
  color: var(--muted);
  font-weight: 600;
}

.regime-shared-axis-row.is-half {
  color: rgba(121, 112, 167, 0.54);
  font-weight: 500;
}

.regime-shared-axis-label {
  display: block;
}

.regime-day-block {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.regime-day-label {
  padding-left: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.regime-visibility-row .status-chip {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.signal-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-height: 56px;
  height: 348px;
  overflow-y: auto;
  padding: 0;
  border-radius: 14px;
  scrollbar-width: thin;
}

.regime-reminder-list {
  height: auto;
  max-height: none;
  min-height: 56px;
  overflow: visible;
}

.regime-reminder-empty-wrap {
  display: block;
}

.regime-reminder-empty {
  width: calc(100% - 8px);
  margin-inline: auto;
  min-height: 64px !important;
  padding: 10px 12px;
  font-size: 0.78rem;
  line-height: 1.3;
}

.regime-reminder-actions {
  display: flex;
  justify-content: flex-end;
}

.regime-reminder-add {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  font-size: 14px;
}

.regime-slot-btn {
  width: 100%;
  padding: 0;
  margin: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.regime-timeline {
  --regime-slot-height: 28px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.regime-timeline.is-axis-hidden {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.regime-timeline.is-axis-hidden .regime-timeline-axis {
  display: none;
}

.regime-timeline-axis,
.regime-timeline-grid {
  display: grid;
  grid-template-rows: repeat(var(--regime-slot-count), var(--regime-slot-height));
}

.regime-timeline-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: rgba(121, 112, 167, 0.62);
  font-size: 9px;
  line-height: 1;
}

.regime-timeline-row.is-hour {
  color: var(--muted);
  font-weight: 600;
}

.regime-timeline-row.is-half {
  color: rgba(121, 112, 167, 0.54);
  font-weight: 500;
}

.regime-timeline-label {
  display: block;
}

.regime-timeline-surface {
  position: relative;
  min-height: calc(var(--regime-slot-count) * var(--regime-slot-height));
  border-radius: 10px;
  border: 1px dashed rgba(205, 197, 237, 0.92);
  background: transparent;
  overflow: hidden;
}

.regime-timeline-surface.is-drop-target {
  background: rgba(242, 238, 255, 0.56);
  border-color: rgba(141, 121, 224, 0.68);
}

.regime-timeline-surface.is-drop-target::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--drop-slot-start, 0) * var(--regime-slot-height));
  height: var(--regime-slot-height);
  border-top: 1px solid rgba(98, 78, 190, 0.7);
  border-bottom: 1px solid rgba(98, 78, 190, 0.7);
  background: rgba(123, 111, 255, 0.16);
  pointer-events: none;
}

.regime-timeline-grid-row {
  border-top: 1px solid rgba(226, 220, 247, 0.8);
}

.regime-timeline-grid-row:first-child {
  border-top: 0;
}

.regime-timeline-grid-row.is-hour {
  background: transparent;
}

.regime-timeline-cards {
  position: absolute;
  inset: 0;
  padding: 2px;
  pointer-events: none;
}

.regime-timeline-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  pointer-events: none;
}

.regime-routine-card {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--slot-start) * var(--regime-slot-height));
  min-height: var(--regime-slot-height);
  height: calc(var(--slot-span) * var(--regime-slot-height));
  display: block;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid var(--signal-border, rgba(65, 54, 115, 0.16));
  background: var(--signal-bg, rgba(255, 255, 255, 0.98));
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
}

.regime-routine-card.is-draggable,
.regime-routine-card.is-draggable .regime-routine-link {
  cursor: grab;
}

.regime-routine-card.dragging {
  opacity: 0.46;
  cursor: grabbing;
}

.regime-routine-card.dragging .regime-routine-link {
  cursor: grabbing;
}

.regime-routine-card.is-disabled {
  opacity: 0.58;
}

.regime-routine-card.is-live {
  box-shadow: 0 0 0 2px rgba(240, 91, 126, 0.2), 0 12px 28px rgba(240, 91, 126, 0.16);
  animation: pulse-signal 1s ease-in-out infinite alternate;
}

.regime-routine-link {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  color: var(--signal-fg, var(--text));
  cursor: pointer;
}

.regime-routine-title {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 9px;
  line-height: 1.12;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.signal-list > .task-empty {
  flex: 1 1 auto;
  min-height: 100%;
  display: grid;
  align-content: center;
}

.signal-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 3px;
  width: calc(100% - 8px);
  margin-inline: auto;
  min-height: 56px;
  height: auto;
  padding: 6px 8px 7px;
  border-radius: 12px;
  border: 1px solid var(--signal-border, rgba(65, 54, 115, 0.16));
  background: var(--signal-bg, rgba(255, 255, 255, 0.92));
  box-shadow: 0 8px 18px rgba(42, 31, 89, 0.06);
  overflow: hidden;
}

.signal-card.is-disabled {
  opacity: 0.58;
}

.signal-card.is-live {
  box-shadow: 0 0 0 2px rgba(240, 91, 126, 0.2), 0 12px 28px rgba(240, 91, 126, 0.16);
  animation: pulse-signal 1s ease-in-out infinite alternate;
}

.signal-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px;
  align-items: center;
}

.signal-status-btn {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.signal-time-link,
.signal-title-link {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.signal-time-link {
  display: block;
}

.signal-title-link {
  display: block;
}

.signal-time {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.signal-title {
  display: block;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signal-column .day-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.signal-column .day-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  min-height: 42px;
}

.signal-column .day-head > div:first-child {
  display: grid;
  align-content: start;
  min-height: 42px;
}

.signal-column .day-date {
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signal-column .day-head-actions {
  align-self: start;
}

.signal-project-pill,
.project-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  width: fit-content;
  max-width: 100%;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.project-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.day-head-actions {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 74px;
}

.day-icon-btn {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: 0 0 24px;
}

.inbox-head-actions {
  min-width: 52px;
}

.signal-focus-panel {
  --focus-accent: #7b6fff;
  --focus-accent-soft: rgba(123, 111, 255, 0.22);
  --focus-accent-surface: rgba(123, 111, 255, 0.18);
  --focus-accent-border: rgba(123, 111, 255, 0.4);
  --focus-accent-shadow: rgba(123, 111, 255, 0.2);
  --focus-accent-text: #4f4388;
  --focus-accent-muted: rgba(79, 67, 136, 0.76);
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--focus-accent-border);
  background:
    radial-gradient(circle at top right, var(--focus-accent-soft), transparent 44%),
    linear-gradient(135deg, var(--focus-accent-surface) 0%, rgba(255, 255, 255, 0.9) 58%);
  box-shadow: 0 14px 30px var(--focus-accent-shadow);
}

.signal-focus-panel.live {
  border-color: var(--focus-accent-border);
  box-shadow: 0 0 0 2px var(--focus-accent-soft), 0 16px 34px var(--focus-accent-shadow);
}

.signal-focus-copy {
  display: grid;
  gap: 4px;
}

.signal-focus-copy strong {
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--focus-accent-text);
}

.signal-focus-label {
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--focus-accent-muted);
}

.signal-focus-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--focus-accent-muted);
  font-size: 12px;
  font-weight: 500;
}

.signal-focus-project {
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid var(--focus-accent-border);
  background: var(--focus-accent-surface);
  display: inline-flex;
  align-items: center;
  color: var(--focus-accent-text);
  font-size: 11px;
  font-weight: 600;
}

.push-panel {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 206, 247, 0.92);
  box-shadow: 0 12px 28px rgba(42, 31, 89, 0.06);
}

.toolbar-side-regime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.push-toggle-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  box-shadow: 0 10px 22px rgba(42, 31, 89, 0.08);
}

.push-toggle-btn.is-open {
  background: rgba(237, 232, 252, 0.96);
}

.push-toggle-btn.has-issue {
  border-color: rgba(232, 201, 131, 0.92);
  background: rgba(255, 243, 214, 0.88);
}

.push-toggle-btn.is-ready {
  border-color: rgba(155, 194, 156, 0.94);
  background: rgba(223, 242, 223, 0.78);
}

.push-toggle-icon {
  font-size: 16px;
  line-height: 1;
}

.push-toggle-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #f8f6ff;
  background: #203a5c;
}

.push-toggle-btn.is-ready .push-toggle-badge {
  background: #76a06b;
}

.push-toggle-btn.has-issue .push-toggle-badge {
  background: #d6932a;
}

.push-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.push-panel-head strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.push-panel-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.push-panel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.push-status-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.push-status-item {
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(214, 206, 247, 0.78);
  background: rgba(245, 241, 255, 0.72);
  display: grid;
  gap: 4px;
  align-content: center;
}

.push-status-item span {
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.push-status-item strong {
  font-size: 12px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 600;
}

.push-status-item.tone-ok {
  background: rgba(223, 242, 223, 0.76);
  border-color: rgba(155, 194, 156, 0.9);
}

.push-status-item.tone-warn {
  background: rgba(255, 243, 214, 0.82);
  border-color: rgba(232, 201, 131, 0.92);
}

.push-panel-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.push-panel-note.is-error {
  color: #9b394f;
}

.task-card {
  display: block;
  align-self: start;
  width: calc(100% - 12px);
  margin-inline: auto;
  min-height: 56px;
  padding: 8px 10px 9px;
  border-radius: 12px;
  background: var(--task-bg, rgba(255, 255, 255, 0.95));
  border: 1px solid var(--task-border, rgba(65, 54, 115, 0.12));
  box-shadow: 0 8px 18px rgba(42, 31, 89, 0.06);
  cursor: grab;
  overflow: hidden;
}

.task-card.completed {
  opacity: 0.8;
}

.task-card.dragging {
  opacity: 0.5;
}

.task-main {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  min-width: 0;
}

.task-main input[type="checkbox"] {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  accent-color: var(--task-accent, #7b61ff);
}

.task-link {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 4px;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  color: var(--muted);
  text-align: left;
  line-height: 1.3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.field input[type="date"] {
  max-width: 100%;
  min-width: 0;
  display: block;
  padding-right: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.task-link:hover {
  color: var(--text);
}

.task-signal-link {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(36, 43, 74, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.86;
}

.task-signal-link:hover {
  color: var(--text);
  opacity: 1;
}

.task-signal-icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
}

.completed .task-link {
  text-decoration: line-through;
  opacity: 0.7;
}

.task-list::-webkit-scrollbar {
  width: 0;
}

.task-list::-webkit-scrollbar-thumb {
  background: rgba(95, 80, 171, 0.22);
  border-radius: 999px;
}

.day-column:hover .task-list::-webkit-scrollbar,
.task-list:focus-within::-webkit-scrollbar {
  width: 8px;
}

.mini-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.task-empty,
.board-empty {
  border: 1px dashed rgba(65, 54, 115, 0.18);
  background: rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.inbox-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.inbox-head { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.inbox-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.inbox-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--task-card-width), var(--task-card-width)));
  gap: 8px;
  justify-content: start;
}

.inbox-list .task-card {
  width: var(--task-card-width);
}

.projects-board {
  display: grid;
  gap: 14px;
  align-items: start;
}

.project-section {
  scroll-margin-top: 16px;
}

.project-section .task-empty {
  width: 100%;
}

.task-card-project-view {
  min-height: 72px;
  cursor: pointer;
}

.task-card-project-view .task-link {
  padding-bottom: 2px;
}

.task-card-meta {
  margin-top: 4px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.task-day-badge {
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.task-day-badge.is-undated {
  background: rgba(238, 233, 252, 0.92);
}

.flash {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.flash.error {
  background: rgba(199, 63, 75, 0.12);
  color: #922936;
  border-color: rgba(199, 63, 75, 0.18);
}

.flash.success {
  background: rgba(15, 159, 110, 0.12);
  color: #0a6f4d;
  border-color: rgba(15, 159, 110, 0.2);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 18px;
  background: rgba(17, 22, 29, 0.48);
  backdrop-filter: blur(8px);
}

.modal {
  width: min(560px, 100%);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  animation: rise 180ms ease-out;
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.modal-admin {
  width: min(760px, 100%);
}

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

.modal-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 247, 0.86);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.modal-close-btn:hover {
  color: var(--text);
}

.modal p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(245, 242, 255, 0.9);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.modal-inline-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-inline-actions-compact {
  margin-top: -2px;
}

.modal-inline-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(210, 201, 242, 0.95);
  background: rgba(245, 242, 255, 0.86);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.modal-inline-action-btn:hover {
  color: var(--text);
}

.modal-inline-action-btn:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.modal-inline-action-btn-secondary {
  background: rgba(255, 255, 255, 0.78);
}

.modal-inline-action-btn-danger {
  border-color: rgba(199, 63, 75, 0.2);
  background: rgba(199, 63, 75, 0.08);
  color: #9b394f;
}

.admin-users-list-wrap {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-users-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-users-list {
  display: grid;
  gap: 10px;
}

.admin-user-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 206, 247, 0.9);
  background: rgba(247, 244, 255, 0.88);
}

.admin-user-card.is-disabled {
  background: rgba(243, 240, 249, 0.74);
}

.admin-user-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-user-copy p {
  margin: 0;
  font-size: 12px;
}

.admin-user-line {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-user-line strong {
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.admin-user-badge {
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 247, 0.95);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.admin-user-badge.is-owner {
  background: rgba(220, 233, 255, 0.88);
  border-color: rgba(174, 201, 245, 0.95);
  color: #305b88;
}

.admin-user-badge.is-active {
  background: rgba(223, 242, 223, 0.78);
  border-color: rgba(155, 194, 156, 0.9);
  color: #3d6b46;
}

.admin-user-badge.is-disabled {
  background: rgba(255, 243, 214, 0.84);
  border-color: rgba(232, 201, 131, 0.92);
  color: #8d6521;
}

.admin-user-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-inline-link {
  font-size: 12px;
}

.project-manage-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.project-manage-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(214, 206, 247, 0.78);
  background: rgba(247, 244, 255, 0.78);
}

.task-import-note,
.task-import-file-name {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.task-import-preview {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(248, 245, 255, 0.78);
}

.task-import-preview.is-error {
  border-color: rgba(232, 143, 156, 0.64);
  background: rgba(255, 242, 244, 0.86);
  color: #9b4c5a;
}

.task-import-example {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(214, 206, 247, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.task-import-example span {
  min-height: 34px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(214, 206, 247, 0.54);
  color: var(--muted);
  font-size: 0.84rem;
}

.task-import-example span:nth-child(1),
.task-import-example span:nth-child(2) {
  color: var(--text);
  font-weight: 700;
}

.task-import-example span:nth-child(2n + 1) {
  border-right: 1px solid rgba(214, 206, 247, 0.54);
}

.task-import-example span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.task-import-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.task-import-summary span {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 247, 0.82);
  background: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.task-import-list {
  display: grid;
  gap: 8px;
}

.task-import-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(198, 228, 193, 0.72);
  background: rgba(248, 255, 246, 0.76);
}

.task-import-row.is-duplicate {
  border-color: rgba(238, 225, 162, 0.84);
  background: rgba(255, 250, 232, 0.84);
}

.task-import-row.is-error {
  border-color: rgba(232, 143, 156, 0.56);
  background: rgba(255, 242, 244, 0.78);
}

.task-import-row span,
.task-import-row em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.task-import-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-inline-icon-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(210, 201, 242, 0.95);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-inline-icon-btn:hover {
  color: var(--text);
}

.modal-inline-icon-btn.is-active {
  color: #203a5c;
  background: rgba(236, 231, 252, 0.94);
  border-color: rgba(197, 187, 234, 0.96);
}

.ui-bell-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.health-modal-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.health-modal-check input {
  width: 16px;
  height: 16px;
  accent-color: #203a5c;
}

.empty-state {
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(45, 52, 64, 0.18);
  border-radius: 20px;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.hint-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.monospace {
  font-family: "IBM Plex Mono", monospace;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-signal {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-1px);
  }
}

@media (max-width: 900px) {
  .regime-board-desktop {
    display: block;
  }

  .regime-shared-axis-column {
    display: none;
  }

  .shell {
    padding: 14px;
  }

  .topbar-head {
    flex-direction: column;
  }

  .topbar-head-anchored {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title right"
      "center center";
    align-items: start;
    column-gap: 10px;
    row-gap: 12px;
  }

  .topbar-head-anchored > :first-child {
    grid-area: title;
    min-width: 0;
  }

  .topbar-head-center {
    grid-area: center;
    width: 100%;
    justify-content: center;
  }

  .topbar-head-right {
    grid-area: right;
    width: auto;
    justify-content: flex-end;
    align-self: start;
  }

  .topbar-head-right:not(.topbar-head-right-regime) {
    display: none;
  }

  .topbar-actions,
  .toolbar-side {
    justify-content: flex-start;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .task-import-example {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .task-import-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .task-import-row span:first-child {
    grid-column: 1 / -1;
  }

  .task-import-row em {
    grid-column: 1 / -1;
  }

  .topbar-primary-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .desktop-only {
    display: none !important;
  }

  .section-switch {
    flex: 0 0 auto;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
  }

  .section-switch .section-tab {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
  }

  .week-nav {
    display: none;
  }

  .week-nav-mobile-label {
    display: inline;
  }

  .topbar-primary-actions .btn {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 500;
  }

  .topbar-actions-week .section-switch,
  .topbar-actions-health .section-switch,
  .topbar-actions-regime .section-switch {
    flex: 0 0 auto;
  }

  .topbar-actions-regime .topbar-primary-actions {
    justify-content: center;
  }

  .toolbar {
    gap: 12px;
  }

  .toolbar-week,
  .toolbar-health {
    align-items: flex-start;
  }

  .health-spark-widget {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .legend-row {
    width: 100%;
    gap: 6px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }

  .toolbar-project-btn {
    order: 99;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
  }

  .chips {
    width: 100%;
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 6px;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .chips::-webkit-scrollbar {
    display: none;
  }

  .project-chip {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
  }

  .project-chip.active {
    font-weight: 600;
  }

  .health-toggle {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .board,
  .health-board {
    grid-template-columns: 1fr;
  }

  .day-column,
  .health-day {
    min-height: auto;
  }

  .day-overflow {
    display: none;
  }

  .day-head-actions {
    min-width: auto;
  }

  .day-column {
    display: none;
  }

  .day-column.active {
    display: grid;
  }

  .health-day {
    display: none;
  }

  .health-day.active {
    display: grid;
  }

  .health-toolbar-left {
    width: 100%;
  }

  .week-day-pills,
  .health-day-pills {
    width: 100%;
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 6px;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .week-day-pills::-webkit-scrollbar,
  .health-day-pills::-webkit-scrollbar {
    display: none;
  }

  .mobile-week-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 38px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(214, 206, 247, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
  }

  .week-day-pill,
  .health-day-pill {
    flex: 0 0 auto;
    min-width: 64px;
    min-height: 36px;
    padding: 0 10px;
    gap: 6px;
    justify-content: center;
    font-size: 13px;
  }

  .health-legend {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
    gap: 4px;
  }

  .health-legend-item {
    min-width: 0;
    min-height: 24px;
    padding: 0 6px;
    font-size: 9px;
    font-weight: 500;
    text-align: center;
  }

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

  .health-sleep-card {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 12px;
  }

  .health-sleep-icon {
    font-size: 15px;
  }

  .health-sleep-card strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
  }

  .meal-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .meal-row {
    min-height: auto;
    align-content: start;
  }

  .task-card {
    min-height: 54px;
  }

  .task-list {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .signal-list {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .regime-board .day-column {
    gap: 8px;
  }

  .regime-visibility-row {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .regime-visibility-row::-webkit-scrollbar {
    display: none;
  }

  .regime-visibility-row .status-chip {
    flex: 0 0 auto;
  }

  .regime-timeline {
    --regime-slot-height: 40px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
  }

  .regime-routine-card {
    min-height: var(--regime-slot-height);
    padding: 8px 9px;
    border-radius: 8px;
  }

  .regime-routine-title {
    font-size: 12px;
    line-height: 1.2;
    -webkit-line-clamp: 3;
  }

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

  .inbox-list .task-card {
    width: 100%;
  }

  .task-card-project-view {
    min-height: 66px;
  }

  .task-card-meta {
    padding-left: 18px;
  }

  .task-day-badge {
    font-size: 9px;
  }

  .inbox-panel {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .modal-backdrop {
    place-items: start center;
    overflow-y: auto;
    padding: max(12px, env(safe-area-inset-top)) 12px 12px;
  }

  .modal {
    width: min(560px, 100%);
    padding: 20px 18px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-health {
    width: min(380px, 100%);
    padding: 16px 16px 14px;
    max-height: calc(100dvh - 24px);
  }

  .modal-sparks {
    width: min(560px, 100%);
  }

  .spark-summary-grid,
  .spark-awards-grid {
    grid-template-columns: 1fr;
  }

  .spark-extra-entry,
  .spark-award-row,
  .spark-award-row-conditional {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .spark-extra-entry {
    display: grid;
  }

  .spark-award-time,
  .spark-award-amount {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
  }

  .spark-spend-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .spark-extra-desktop {
    display: none;
  }

  .spark-extra-mobile {
    display: block;
  }

  .spark-extra-period {
    justify-content: space-between;
  }

  .spark-extra-period strong {
    min-width: 0;
    font-size: 0.96rem;
  }

  .spark-extra-mobile-row {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .spark-extra-mobile-row .modal-inline-action-btn {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .modal-admin {
    width: min(100%, 100%);
    padding: 18px 16px 16px;
  }

  .modal-health h2 {
    font-size: 1.35rem;
  }

  .modal-health .modal-form {
    margin-top: 14px;
    gap: 10px;
  }

  .modal-health .field {
    gap: 6px;
  }

  .modal-health .field label,
  .modal-health .health-modal-check {
    font-size: 0.98rem;
    font-weight: 600;
  }

  .modal .field input[type="date"],
  .modal .field select,
  .modal .field input,
  .modal .field textarea {
    max-width: 100%;
    min-width: 0;
  }

  .modal .field input[type="date"] {
    padding-right: 14px;
    font-size: 16px;
  }

  .time-picker-desktop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .time-picker-select {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 15px;
  }

  .modal-health .field textarea {
    min-height: 96px;
    padding: 10px 12px;
    font-size: 15px;
  }

  .admin-user-card {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .admin-user-actions {
    justify-content: flex-start;
  }

  .project-manage-card {
    align-items: flex-start;
  }

  .signal-time {
    font-size: 15px;
  }

  .signal-title {
    font-size: 12px;
    line-height: 1.28;
  }

  .signal-card {
    min-height: 60px;
    padding: 8px 10px;
    height: auto;
  }

  .signal-status-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .signal-focus-panel {
    padding: 14px;
  }

  .push-panel {
    padding: 12px 13px;
    gap: 10px;
  }

  .toolbar-side-regime {
    width: 100%;
    justify-content: flex-start;
  }

  .push-toggle-btn {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .push-panel-head strong {
    font-size: 14px;
  }

  .push-panel-actions {
    width: 100%;
  }

  .push-panel-actions .btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
  }

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

  .push-status-item {
    min-height: 54px;
    padding: 9px 10px;
  }
}
