:root {
  /* Ginger palette */
  --c-bg: #FBF6EF;
  --c-surface: #FFFFFF;
  --c-surface-alt: #F3EBDE;
  --c-ink: #231712;
  --c-ink-soft: #5A4A3F;
  --c-muted: #998673;
  --c-hair: rgba(35, 23, 18, 0.08);
  --c-primary: #C45A1E;
  --c-primary-ink: #FFFFFF;
  --c-accent: #6B7F3A;
  --c-danger: #B4321B;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --fab-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.display {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.mono { font-family: var(--ff-mono); font-feature-settings: "tnum"; }
.tnum { font-variant-numeric: tabular-nums; }

.overline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 500;
}

input, select, textarea, button {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

a { color: inherit; text-decoration: none; }

/* Hide scrollbars for horizontal chip row and main scroll area */
.filter-chips::-webkit-scrollbar,
.log-scroll::-webkit-scrollbar { display: none; }
.filter-chips { scrollbar-width: none; }
.log-scroll  { scrollbar-width: none; }

/* ──────────────────────────────────────────────────── Login ── */
.login-wrap {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  width: 100%;
  max-width: 340px;
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.login-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--c-hair);
}
.login-header .mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login-header h1 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
}
.login-header .sub {
  margin-top: 2px;
  font-size: 11px;
  color: var(--c-muted);
}
.login-card form { display: flex; flex-direction: column; gap: 12px; }
.login-card label {
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding-left: 2px;
}
.login-card input[type=password] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-hair);
  border-radius: 12px;
  background: var(--c-bg);
  font-size: 16px;
  outline: none;
}
.login-card input[type=password]:focus { border-color: var(--c-primary); }
.btn-primary {
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  background: var(--c-primary);
  color: var(--c-primary-ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.flash {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(180, 50, 27, 0.08);
  color: var(--c-danger);
  font-size: 13px;
}

/* ─────────────────────────────────────────────── Screen frame ── */
.screen {
  position: relative;
  min-height: 100dvh;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
}

/* ────────────────────────────────────────────────────── Header ── */
.screen-header {
  padding: 20px 20px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mark-button {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-primary);
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mark-dots {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--c-bg);
  border: 1px solid var(--c-hair);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5px;
}
.mark-dots span {
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--c-ink);
}
.screen-title { flex: 1; }
.screen-title .overline { line-height: 1; }
.screen-title h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  margin-top: 1px;
}

/* ──────────────────────────────────────────────── Filter bar ── */
.log-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--c-bg);
  padding: 2px 0 10px;
  border-bottom: 1px solid var(--c-hair);
}
.filter-chips {
  display: flex;
  gap: 6px;
  padding: 6px 20px 2px;
  overflow-x: auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-ink-soft);
  border: 1px solid var(--c-hair);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
  white-space: nowrap;
  cursor: pointer;
}
.chip--active {
  background: var(--c-ink);
  color: var(--c-surface);
  border-color: var(--c-ink);
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.date-jump {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 0;
  font-size: 12px;
  color: var(--c-muted);
}
.date-jump input[type=date] {
  flex: 1;
  font-size: 12px;
  color: var(--c-ink-soft);
  background: transparent;
  border: none;
  padding: 2px 4px;
  outline: none;
}

/* ──────────────────────────────────────────────────── Log list ── */
.log-scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 100px;
}
.empty-state {
  padding: 60px 40px;
  text-align: center;
  color: var(--c-muted);
  font-size: 14px;
}

.day-group { }
.day-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 20px 8px;
  scroll-margin-top: 96px;
}
.day-heading h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.2px;
  font-weight: 500;
}
.day-count { font-size: 10px; }

.entry-card {
  list-style: none;
  margin: 0 14px;
  padding: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: 16px;
  overflow: hidden;
}
.entry-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 20px;
  border-top: 1px solid var(--c-hair);
  cursor: pointer;
}
.entry-row:first-child { border-top: none; }
.entry-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.entry-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.entry-category {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.1px;
}
.entry-note {
  font-size: 12px;
  color: var(--c-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.entry-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  flex-shrink: 0;
}
.entry-unit {
  font-size: 11px;
  font-weight: 400;
  color: var(--c-muted);
  margin-left: 4px;
}
.entry-time {
  font-size: 12px;
  color: var(--c-muted);
  min-width: 38px;
  text-align: right;
}

/* ───────────────────────────────────────────────────────── FAB ── */
.fab {
  position: fixed;
  right: 20px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--c-primary);
  color: var(--c-primary-ink);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--fab-shadow);
  z-index: 10;
}

/* ─────────────────────────────────────────────── Sheets (slide-up) ── */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 220ms ease;
}
.sheet[aria-hidden="false"] {
  background: rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}
.sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
}
.sheet[aria-hidden="false"] .sheet-panel { transform: translateY(0); }

.sheet--picker .sheet-panel {
  top: 8px;
  border-radius: 20px 20px 0 0;
}

.sheet-grab {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--c-hair);
  margin: 10px auto 4px;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 10px;
  gap: 12px;
}
.sheet-header--actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 14px 16px 10px;
}
.sheet-header--actions .link-btn { justify-self: start; }
.sheet-header--actions .sheet-title { justify-self: center; }
.sheet-header--actions .btn-pill { justify-self: end; }
.sheet-title {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-ink);
  white-space: nowrap;
}

.link-btn {
  border: none;
  background: transparent;
  color: var(--c-ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 2px;
  cursor: pointer;
}

.btn-icon {
  border: none;
  background: transparent;
  padding: 4px;
  color: var(--c-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--c-hair);
  color: var(--c-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill--primary:not(:disabled) {
  background: var(--c-primary);
  color: var(--c-primary-ink);
}
.btn-pill:disabled { cursor: not-allowed; }

/* ─────────────────────────────────────────────── Sheet body (form) ── */
.sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 120px;
}
.field { margin-top: 18px; }
.field:first-child { margin-top: 12px; }
.field-label {
  display: flex;
  justify-content: space-between;
  padding: 0 2px 6px;
}
.field-hint { font-size: 11px; color: var(--c-muted); text-transform: none; letter-spacing: 0; font-weight: 400; }

.field-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.field-row .field { margin-top: 0; }
.field--value { width: 140px; flex-shrink: 0; }
.field--unit { flex: 1; min-width: 0; }

.input-shell {
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: 12px;
  padding: 2px 4px;
  display: flex;
  align-items: center;
}
.input-shell:focus-within { border-color: var(--c-primary); }
.input-icon {
  padding-left: 10px;
  display: inline-flex;
  color: var(--c-muted);
}
.input-large {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 10px;
  font-size: 22px;
  outline: none;
  color: var(--c-ink);
}
.input-row {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 10px;
  font-size: 16px;
  outline: none;
  color: var(--c-ink);
  font-family: inherit;
  resize: none;
}

/* ─────────────────────────────────────────────── Chip variants ── */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
}
.chip-row--quick { margin-top: 8px; padding: 0; }

.chip-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--c-hair);
  background: var(--c-surface);
  color: var(--c-ink-soft);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.chip-pill.chip--active {
  background: var(--c-ink);
  color: var(--c-surface);
  border-color: var(--c-ink);
}

.chip-other {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed var(--c-hair);
  background: transparent;
  color: var(--c-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.chip-other.chip--active {
  background: var(--c-ink);
  color: var(--c-surface);
  border: 1px solid var(--c-ink);
}

.chip-quick {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--c-hair);
  background: var(--c-surface);
  color: var(--c-ink-soft);
  font-size: 12px;
  cursor: pointer;
}

/* ─────────────────────────────────────────────── Picker list ── */
.picker-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 10px;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-hair);
}
.picker-search {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  color: var(--c-ink);
}
.picker-list {
  flex: 1;
  overflow-y: auto;
}
.picker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-hair);
}
.picker-item--current { color: var(--c-primary); font-weight: 500; }
.picker-item--new {
  color: var(--c-primary);
  font-weight: 500;
  padding: 14px 18px;
  border-bottom: none;
}

/* ──────────────────────────────────────────────────── Delete action ── */
.btn-delete {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(180, 50, 27, 0.25);
  color: var(--c-danger);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.btn-delete:hover, .btn-delete:focus-visible {
  background: rgba(180, 50, 27, 0.06);
}

.entry-row { user-select: none; }

/* ─────────────────────────────────────────────── Menu drawer ── */
.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.menu-drawer[aria-hidden="false"] { pointer-events: auto; }
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 220ms ease;
}
.menu-drawer[aria-hidden="false"] .menu-backdrop { background: rgba(0, 0, 0, 0.35); }
.menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(82%, 320px);
  background: var(--c-bg);
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  transform: translateX(-100%);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
}
.menu-drawer[aria-hidden="false"] .menu-panel { transform: translateX(0); }

.menu-header {
  padding: 0 22px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--c-hair);
}
.menu-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-title {
  font-size: 18px;
  line-height: 1.1;
  color: var(--c-ink);
}
.menu-sub {
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 2px;
}

.menu-items { padding: 10px 0; flex: 1; }
.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-left: 3px solid transparent;
  color: var(--c-ink-soft);
}
.menu-item--active {
  background: var(--c-surface);
  border-left-color: var(--c-primary);
  color: var(--c-ink);
}
.menu-item--disabled { color: var(--c-muted); cursor: default; }
.menu-item-label { font-size: 15px; font-weight: 500; }
.menu-item--active .menu-item-label { font-weight: 600; }
.menu-item-blurb { font-size: 11px; color: var(--c-muted); margin-top: 1px; }

.menu-footer {
  padding: 12px 22px 8px;
  border-top: 1px solid var(--c-hair);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-muted);
}
.menu-version { font-family: var(--ff-mono); }

/* ─────────────────────────────────────────────── Verlauf screen ── */
.graphs-main {
  padding: 0 14px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legend-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 4px 6px;
}
.chip-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--c-hair);
  background: transparent;
  color: var(--c-muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.chip-legend--active {
  background: var(--c-surface);
  border-color: var(--c-ink);
  color: var(--c-ink);
}

.chart-card {
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: 16px;
  padding: 10px;
}
.chart-svg {
  width: 100%;
  height: 240px;
  display: block;
}
.chart-range-label {
  font-size: 11px;
  color: var(--c-muted);
  text-align: center;
  padding: 4px 0 2px;
}
.chart-empty {
  background: var(--c-surface);
  border: 1px dashed var(--c-hair);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  color: var(--c-muted);
  font-size: 14px;
}

.range-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip--active-pill {
  background: var(--c-ink);
  color: var(--c-surface);
  border-color: var(--c-ink);
}

.stats-heading { padding: 6px 6px; }
.stats-card {
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: 16px;
  overflow: hidden;
}
.stats-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--c-hair);
}
.stats-row:first-child { border-top: none; }
.stats-labels { flex: 1; min-width: 0; }
.stats-name { font-size: 14px; font-weight: 500; color: var(--c-ink); }
.stats-sub { font-size: 11px; color: var(--c-muted); margin-top: 1px; }
.stats-values {
  text-align: right;
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.35;
}
.stats-range { font-size: 10px; color: var(--c-muted); }

.stats-dot-btn {
  border: none;
  padding: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────── Minimap ── */
.minimap-svg {
  width: 100%;
  height: 52px;
  display: block;
  margin-top: 6px;
  touch-action: none;
  user-select: none;
}
.minimap-body { cursor: grab; }
.minimap-body:active { cursor: grabbing; }
.minimap-handle { cursor: ew-resize; }

/* ─────────────────────────────────────────────── Color editor (bottom sheet) ── */
.sheet--bottom {
  background: rgba(0, 0, 0, 0);
  transition: background 220ms ease;
}
.sheet--bottom[aria-hidden="false"] { background: rgba(0, 0, 0, 0.25); }
.sheet-panel--bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  background: var(--c-bg);
  border-radius: 20px 20px 0 0;
  padding: 10px 18px 24px;
  transform: translateY(100%);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}
.sheet--bottom[aria-hidden="false"] .sheet-panel--bottom { transform: translateY(0); }

.color-editor-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0 14px;
}
.color-editor-title {
  font-size: 17px;
  color: var(--c-ink);
}
.color-editor-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.swatch {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--c-hair);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.swatch.swatch--selected {
  border: 3px solid var(--c-ink);
}
.btn-reset {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: var(--c-surface);
  color: var(--c-ink-soft);
  border: 1px solid var(--c-hair);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* ─────────────────────────────────────────────── Mehr screen ── */
.mehr-main {
  padding: 6px 14px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mehr-section { display: flex; flex-direction: column; gap: 8px; }
.mehr-section-title { padding: 0 8px; }
.mehr-card {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-hair);
  border-radius: 16px;
  overflow: hidden;
}
.mehr-card--padded { padding: 14px 16px; }
.mehr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--c-hair);
}
.mehr-row:first-child { border-top: none; }
.mehr-row-labels { flex: 1; min-width: 0; }
.mehr-row-name { font-size: 14px; font-weight: 500; color: var(--c-ink); }
.mehr-row-sub { font-size: 11px; color: var(--c-muted); margin-top: 1px; }

.mehr-blurb {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}
.mehr-blurb .mono { font-size: 12px; }
.mehr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.mehr-hint {
  padding: 6px 10px;
  font-size: 12px;
  color: var(--c-muted);
}
.mehr-push-form { margin: 0; display: inline-flex; }
.flash--ok {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(107, 127, 58, 0.12);
  color: var(--c-accent);
  font-size: 13px;
  margin-top: 10px;
}
.flash--error { margin-top: 10px; }
