/* Barn Book - phone-first styles. Big text, big buttons, high contrast. */

:root {
  --bg: #f5f1e8;
  --surface: #ffffff;
  --surface-2: #ece6da;
  --ink: #1c1915;
  --ink-2: #5a5247;
  --line: #d9d0c0;
  --brand: #2d5a3a;
  --brand-ink: #ffffff;
  --brand-soft: #e1ece2;
  --bar: #2d5a3a;
  --bar-ink: #ffffff;
  --accent: #8a5424;
  --ok: #2a7a3d;
  --ok-soft: #e0f1e3;
  --warn: #8f5a00;
  --warn-soft: #fdf0d3;
  --bad: #b2261d;
  --bad-soft: #fbe2df;
  --shadow: 0 1px 2px rgba(50, 35, 10, 0.07), 0 3px 10px rgba(50, 35, 10, 0.06);
  --radius: 16px;
  --tabbar: 68px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14120f;
    --surface: #1f1c18;
    --surface-2: #2b2721;
    --ink: #f4efe6;
    --ink-2: #bcb2a2;
    --line: #3b352c;
    --brand: #7dbb8c;
    --brand-ink: #0d1a10;
    --brand-soft: #22382a;
    --bar: #1d3525;
    --bar-ink: #f4efe6;
    --accent: #d6995e;
    --ok: #7dcf8f;
    --ok-soft: #1c3322;
    --warn: #f0b650;
    --warn-soft: #3a2d12;
    --bad: #ff8a80;
    --bad-soft: #3d1c19;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 18px/1.45 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

a { color: var(--brand); }
h1, h2, h3 { line-height: 1.2; margin: 0; }
p { margin: 0 0 12px; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

.icon { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon.lg { width: 30px; height: 30px; }
.icon.xl { width: 44px; height: 44px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ------------------------------------------------------------ app shell */

.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 4px;
  min-height: 60px;
  padding: env(safe-area-inset-top) 8px 0;
  background: var(--bar); color: var(--bar-ink);
}
.topbar h1 { flex: 1; font-size: 21px; padding: 0 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar .back {
  display: flex; align-items: center; gap: 2px;
  min-height: 48px; padding: 0 12px 0 4px;
  background: none; border: 0; border-radius: 12px;
  color: inherit; font: inherit; font-weight: 700; text-decoration: none;
}
.topbar .back:active { background: rgba(255, 255, 255, 0.15); }

main {
  max-width: 680px; margin: 0 auto;
  padding: 16px 16px calc(var(--tabbar) + 32px + env(safe-area-inset-bottom));
}

.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.tabbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: var(--tabbar);
  color: var(--ink-2); text-decoration: none; font-size: 13px; font-weight: 700;
}
.tabbar a .pill { display: flex; padding: 4px 16px; border-radius: 999px; }
.tabbar a.active { color: var(--brand); }
.tabbar a.active .pill { background: var(--brand-soft); }

.loading { padding: 48px 0; text-align: center; color: var(--ink-2); }

/* -------------------------------------------------------------- basics */

.card {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 16px; margin-bottom: 14px;
}
.section { margin: 26px 0 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.section h2 { font-size: 19px; }
.section a { font-weight: 700; text-decoration: none; min-height: 44px; display: flex; align-items: center; }
.muted { color: var(--ink-2); }
.small { font-size: 15px; }
.big { font-size: 22px; font-weight: 700; }
.pre { white-space: pre-wrap; overflow-wrap: anywhere; }
.center { text-align: center; }
.stack > * + * { margin-top: 10px; }

.hello h1 { font-size: 27px; }
.hello p { color: var(--ink-2); margin: 4px 0 18px; }

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 20px;
  border: 2px solid transparent; border-radius: 14px;
  font: inherit; font-weight: 700; text-decoration: none; text-align: center;
  cursor: pointer; user-select: none;
  background: var(--surface); color: var(--ink); border-color: var(--line);
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: default; }
.btn.primary { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.btn.danger { color: var(--bad); border-color: var(--bad-soft); }
.btn.danger-fill { background: var(--bad); border-color: var(--bad); color: var(--surface); }
.btn.block { display: flex; width: 100%; }
.btn.small { min-height: 46px; padding: 0 14px; font-size: 16px; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.btn-row > .btn { flex: 1 1 140px; }

.fab-row { margin: 4px 0 18px; }

/* --------------------------------------------------------------- lists */

.list { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 14px; }
.row {
  display: flex; align-items: center; gap: 14px;
  min-height: 68px; padding: 12px 16px;
  color: var(--ink); text-decoration: none;
  border-top: 1px solid var(--line);
  background: none; width: 100%; font: inherit; text-align: left; border-left: 0; border-right: 0; border-bottom: 0;
}
.list > .row:first-child { border-top: 0; }
a.row:active, button.row:active { background: var(--surface-2); }
.row .main { flex: 1; min-width: 0; }
.row .title, .row .sub, .checkrow .title, .checkrow .sub, .stock .title, .stock .qty { display: block; }
.row .title { font-weight: 700; overflow-wrap: anywhere; }
.row .sub { color: var(--ink-2); font-size: 15px; overflow-wrap: anywhere; }
.row .main > .chip { margin-top: 4px; }
a[href^="tel:"] { white-space: nowrap; }
.row .end { text-align: right; font-weight: 700; white-space: nowrap; }
.row .chev { color: var(--ink-2); }
.row .lead { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; background: var(--surface-2); color: var(--ink-2); }
.row .lead.bad { background: var(--bad-soft); color: var(--bad); }
.row .lead.warn { background: var(--warn-soft); color: var(--warn); }
.row .lead.ok { background: var(--ok-soft); color: var(--ok); }
.row .lead.brand { background: var(--brand-soft); color: var(--brand); }

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  background: var(--surface-2); color: var(--ink-2);
}
.chip.bad { background: var(--bad-soft); color: var(--bad); }
.chip.warn { background: var(--warn-soft); color: var(--warn); }
.chip.ok { background: var(--ok-soft); color: var(--ok); }
.chip.brand { background: var(--brand-soft); color: var(--brand); }
.chip .icon { width: 16px; height: 16px; }
a.chip { text-decoration: none; }

.empty { text-align: center; padding: 32px 16px; color: var(--ink-2); }
.empty .icon { width: 48px; height: 48px; color: var(--line); margin-bottom: 8px; }
.empty h3 { color: var(--ink); font-size: 20px; margin-bottom: 6px; }

/* --------------------------------------------------------------- today */

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.tile {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px; min-height: 132px;
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  color: var(--ink); text-decoration: none; border: 2px solid transparent;
}
.tile:active { border-color: var(--brand); }
button.tile { font: inherit; text-align: left; cursor: pointer; width: 100%; }
.tile .icon { color: var(--brand); }
.tile .num { font-size: 30px; font-weight: 800; line-height: 1.1; overflow-wrap: anywhere; }
.tile .num.money { font-size: 23px; }
.tile .label { font-weight: 700; }
.tile .sub { font-size: 15px; color: var(--ink-2); }
.tile.bad .icon, .tile.bad .num { color: var(--bad); }
.tile.good .num { color: var(--ok); }

.progress { height: 12px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--ok); border-radius: 999px; transition: width 0.3s; }

.note { border-left: 5px solid var(--line); }
.note.important { border-left-color: var(--bad); }
.note .meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-size: 15px; color: var(--ink-2); margin-bottom: 6px; }
.note .meta b { color: var(--ink); }

.help-card { background: var(--brand-soft); box-shadow: none; }
.help-card h3 { font-size: 18px; margin-bottom: 8px; }
.help-card ol { margin: 0; padding-left: 22px; }

/* ------------------------------------------------------------- feeding */

.seg { display: flex; gap: 8px; margin-bottom: 14px; }
.seg a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: 64px; padding: 6px 4px;
  background: var(--surface); border: 2px solid var(--line); border-radius: 14px;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15px;
}
.seg a.active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }

.progress-card { display: flex; flex-direction: column; gap: 10px; }
.progress-card .big { display: flex; justify-content: space-between; align-items: baseline; }

.done-banner {
  display: flex; align-items: center; gap: 12px;
  background: var(--ok-soft); color: var(--ok); font-weight: 800; font-size: 20px;
  border-radius: var(--radius); padding: 16px; margin-bottom: 14px;
}

.feedcard { border-left: 6px solid var(--accent); padding: 0; overflow: hidden; }
.feedcard .top { display: flex; align-items: center; gap: 12px; padding: 14px 16px 0; }
.feedcard .name { font-size: 22px; font-weight: 800; flex: 1; min-width: 0; overflow-wrap: anywhere; }
.feedcard .stall { font-size: 15px; font-weight: 700; color: var(--ink-2); background: var(--surface-2); padding: 3px 10px; border-radius: 8px; white-space: nowrap; }
.feedcard .what { font-size: 20px; padding: 8px 16px 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.feedcard .what.none { color: var(--ink-2); font-style: italic; font-size: 17px; }
.feedcard .meds { display: flex; gap: 8px; margin: 10px 16px 0; padding: 10px 12px; border-radius: 10px; background: var(--bad-soft); color: var(--bad); font-weight: 700; }
.feedcard .fnote { display: flex; gap: 8px; margin: 10px 16px 0; color: var(--ink-2); font-size: 16px; }
.feedcard .fedbtn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: calc(100% - 32px); min-height: 60px; margin: 14px 16px 16px;
  border: 2px solid var(--brand); border-radius: 14px;
  background: var(--brand); color: var(--brand-ink);
  font: inherit; font-weight: 800; font-size: 19px; cursor: pointer;
}
.feedcard.fed { border-left-color: var(--ok); }
.feedcard.fed .what, .feedcard.fed .meds, .feedcard.fed .fnote { display: none; }
.feedcard.fed .fedbtn { background: var(--ok-soft); color: var(--ok); border-color: var(--ok-soft); font-size: 17px; min-height: 52px; margin-top: 10px; }

/* -------------------------------------------------------------- chores */

.checkrow {
  display: flex; align-items: center; gap: 14px;
  width: 100%; min-height: 72px; padding: 12px 16px;
  background: none; border: 0; border-top: 1px solid var(--line);
  color: var(--ink); font: inherit; text-align: left; cursor: pointer;
}
.list > .checkrow:first-child { border-top: 0; }
.checkrow .box {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  border: 3px solid var(--ink-2); display: flex; align-items: center; justify-content: center; color: transparent;
}
.checkrow .box .icon { stroke-width: 3.2; }
.checkrow .main { flex: 1; min-width: 0; }
.checkrow .title { font-weight: 700; font-size: 19px; overflow-wrap: anywhere; }
.checkrow .sub { color: var(--ink-2); font-size: 15px; }
.checkrow.done .box { background: var(--ok); border-color: var(--ok); color: #fff; }
.checkrow.done .title { color: var(--ink-2); text-decoration: line-through; }
.checkrow.late .sub { color: var(--bad); font-weight: 700; }

/* --------------------------------------------------------------- horses */

.avatar {
  width: 56px; height: 56px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: #fff; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar.c0 { background: #8a5424; } .avatar.c1 { background: #2d5a3a; } .avatar.c2 { background: #5a4a8a; }
.avatar.c3 { background: #2f5f7f; } .avatar.c4 { background: #7f3b3b; } .avatar.c5 { background: #5f6b2a; }

.hero { position: relative; margin: -16px -16px 16px; background: var(--surface-2); }
.hero img { display: block; width: 100%; max-height: 320px; object-fit: cover; }
.hero .noimg { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 56px; font-weight: 800; color: #fff; }
.hero .noimg.avatar { width: auto; height: 150px; border-radius: 0; }
.hero .photo-btn { position: absolute; right: 12px; bottom: 12px; background: rgba(0, 0, 0, 0.62); color: #fff; border: 0; }
.horse-head h2 { font-size: 30px; }
.horse-head p { color: var(--ink-2); margin-top: 4px; }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; align-items: baseline; }
.kv dt { font-weight: 700; color: var(--ink-2); font-size: 15px; display: flex; align-items: center; gap: 6px; }
.kv dt .icon { width: 20px; height: 20px; }
.kv dd { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; }

.meds-box { background: var(--bad-soft); color: var(--bad); border-radius: 12px; padding: 12px 14px; font-weight: 700; display: flex; gap: 10px; margin-top: 12px; }

.search { position: relative; margin-bottom: 14px; }
.search .icon { position: absolute; left: 16px; top: 16px; color: var(--ink-2); }
.search input { padding-left: 50px; }

/* ------------------------------------------------------------ supplies */

.stock { display: flex; align-items: center; gap: 12px; padding: 12px 16px; min-height: 76px; border-top: 1px solid var(--line); }
.list > .stock:first-child { border-top: 0; }
.stock .main { flex: 1; min-width: 0; color: var(--ink); text-decoration: none; }
.stock .title { font-weight: 700; overflow-wrap: anywhere; }
.stock .qty { font-size: 22px; font-weight: 800; }
.stock.low .qty { color: var(--warn); }
.stock.out .qty { color: var(--bad); }
.stock .step {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 2px solid var(--line); color: var(--ink); cursor: pointer;
}
.stock .step .icon { width: 26px; height: 26px; stroke-width: 2.6; }
.group-title { font-size: 15px; font-weight: 800; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.04em; margin: 22px 4px 8px; }

.big-count { font-size: 56px; font-weight: 800; text-align: center; line-height: 1; }
.big-count small { display: block; font-size: 18px; font-weight: 600; color: var(--ink-2); margin-top: 8px; }

/* --------------------------------------------------------------- forms */

.field { margin-bottom: 20px; }
.field > label, .field > .label { display: block; font-weight: 700; margin-bottom: 8px; }
.field .opt { font-weight: 400; color: var(--ink-2); font-size: 15px; }
.hint { font-size: 15px; color: var(--ink-2); margin-top: 6px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="time"],
input[type="number"], input[type="search"], input[type="password"], select, textarea {
  display: block; width: 100%; min-height: 56px;
  padding: 12px 14px;
  font: inherit; color: var(--ink);
  background: var(--surface); border: 2px solid var(--line); border-radius: 12px;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px; background-repeat: no-repeat; padding-right: 44px;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
input[type="date"], input[type="time"] { min-width: 0; }

.fieldset { border: 0; padding: 0; margin: 0 0 20px; min-width: 0; }
.fieldset legend { padding: 0; font-weight: 700; margin-bottom: 8px; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choices.one { grid-template-columns: 1fr; }
.choices.days { grid-template-columns: repeat(4, 1fr); }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span {
  display: flex; align-items: center; gap: 10px;
  min-height: 56px; height: 100%; padding: 10px 14px;
  border: 2px solid var(--line); border-radius: 12px; background: var(--surface);
  font-weight: 700;
}
.choice span small { display: block; font-weight: 400; color: var(--ink-2); font-size: 15px; }
.choices.days .choice span { justify-content: center; padding: 10px 4px; }
.choice input:checked + span { border-color: var(--brand); background: var(--brand-soft); color: var(--ink); box-shadow: inset 0 0 0 1px var(--brand); }
.choice input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 2px; }

.toggle { display: flex; align-items: center; gap: 14px; min-height: 56px; cursor: pointer; font-weight: 700; }
.toggle input { width: 30px; height: 30px; accent-color: var(--brand); flex: none; }

.quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.quick button {
  min-height: 44px; padding: 0 14px; border-radius: 999px;
  border: 2px solid var(--line); background: var(--surface); color: var(--ink);
  font: inherit; font-size: 16px; font-weight: 600; cursor: pointer;
}

.form-error {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bad-soft); color: var(--bad); font-weight: 700;
  border-radius: 12px; padding: 14px; margin-bottom: 16px;
}

.form-part { font-size: 20px; margin: 30px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); }
form > .form-part:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.card .icon + span, .muted > .icon { vertical-align: middle; }

.danger-zone { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); }

/* --------------------------------------------------------- toast & sheet */

.toast {
  position: fixed; left: 50%; bottom: calc(var(--tabbar) + 16px + env(safe-area-inset-bottom)); z-index: 60;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  width: max-content; max-width: calc(100% - 32px);
  padding: 12px 12px 12px 18px; min-height: 56px;
  background: var(--ink); color: var(--bg); border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3); font-weight: 600;
}
.toast.bad { background: var(--bad); color: var(--surface); }
.toast button { min-height: 44px; padding: 0 14px; border: 2px solid currentColor; border-radius: 10px; background: transparent; color: inherit; font: inherit; font-weight: 800; cursor: pointer; }

.overlay { position: fixed; inset: 0; z-index: 70; background: rgba(0, 0, 0, 0.5); display: flex; align-items: flex-end; justify-content: center; }
.sheet {
  width: 100%; max-width: 520px; background: var(--surface); color: var(--ink);
  border-radius: 22px 22px 0 0; padding: 24px 20px calc(20px + env(safe-area-inset-bottom));
}
.sheet h2 { font-size: 23px; margin-bottom: 8px; }
.sheet p { color: var(--ink-2); }
.sheet .btn { width: 100%; margin-top: 10px; }
@media (min-width: 600px) {
  .overlay { align-items: center; }
  .sheet { border-radius: 22px; }
}

/* ---------------------------------------------------------------- login */

.login { max-width: 440px; margin: 0 auto; padding: calc(28px + env(safe-area-inset-top)) 20px 40px; }
.login .brand { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 24px; }
.login .brand img { width: 84px; height: 84px; border-radius: 22px; margin-bottom: 12px; }
.login .brand h1 { font-size: 26px; }
.login .brand p { color: var(--ink-2); margin: 4px 0 0; }
.login h2 { font-size: 21px; margin-bottom: 14px; text-align: center; }
.people { display: grid; gap: 10px; }
.people .btn { justify-content: flex-start; font-size: 20px; min-height: 64px; }
.people .btn .avatar { width: 40px; height: 40px; font-size: 16px; }

.dots { display: flex; justify-content: center; gap: 14px; margin: 10px 0 22px; min-height: 22px; }
.dots span { width: 18px; height: 18px; border-radius: 50%; border: 3px solid var(--ink-2); }
.dots span.on { background: var(--ink); border-color: var(--ink); }
.keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.keypad button {
  min-height: 70px; border-radius: 18px; border: 2px solid var(--line); background: var(--surface); color: var(--ink);
  font: inherit; font-size: 28px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.keypad button:active { background: var(--surface-2); }
.keypad button.go { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); font-size: 21px; }
.keypad button.soft { font-size: 17px; color: var(--ink-2); }

/* -------------------------------------------------------- statement/print */

.statement table { width: 100%; border-collapse: collapse; font-size: 15px; }
.statement th, .statement td { text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--line); vertical-align: top; }
.statement td.num, .statement th.num { text-align: right; white-space: nowrap; }
.statement .total { font-size: 22px; font-weight: 800; text-align: right; margin-top: 16px; }

@media print {
  :root { --bg: #fff; --surface: #fff; --ink: #000; --ink-2: #333; --line: #bbb; --shadow: none; }
  body { font-size: 12pt; }
  .topbar, .tabbar, .no-print, .toast { display: none !important; }
  main { padding: 0; max-width: none; }
  .card { box-shadow: none; padding: 0; }
}
