@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Fredoka:wght@500;600;700&family=Nunito+Sans:wght@400;600;700;800;900&display=swap");

:root {
  /* Toy-box inspired palette */
  --toy-sky-blue: #4DA7E8;
  --toy-denim-blue: #2456A6;
  --toy-yellow: #FFD23F;
  --toy-red: #D62828;
  --toy-green: #3FA34D;
  --toy-brown: #8B5A2B;
  --toy-white: #FFFFFF;

  /* Working colors */
  --bg: #F7F4ED;
  --surface: #FFFFFF;
  --surface-soft: #FFF8E1;
  --text: #1D2521;
  --muted: #58645D;
  --line: #D9D1C2;

  --primary: #2456A6;
  --primary-dark: #173B75;
  --primary-soft: #E8F2FF;

  --accent: #FFD23F;
  --accent-dark: #6F4B00;
  --accent-soft: #FFF5C2;

  --success: #237A3B;
  --success-soft: #EAF7EE;

  --danger: #B91C1C;
  --danger-soft: #FFF0F0;

  --brown: #8B5A2B;
  --brown-soft: #F4E7D7;

  /* Fonts */
  --font-heading: "Fredoka", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Bree Serif", Georgia, serif;

  /* Layout */
  --max-width: 920px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 15px;
  --tap-target: 48px;
  --bottom-nav-height: 86px;

  /* Effects */
  --shadow-soft: 0 12px 32px rgba(23, 59, 117, 0.12);
  --shadow-small: 0 4px 14px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

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

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
}

a {
  color: var(--primary);
  text-underline-offset: 0.16em;
}

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

/* Typography */

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 10vw, 4.2rem);
  line-height: 0.94;
  color: var(--toy-white);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.1;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

h4 {
  margin: 10px 0 4px;
  font-size: 1rem;
}

p {
  margin: 0 0 12px;
}

ul,
ol {
  margin: 8px 0 12px;
  padding-left: 1.25rem;
}

li {
  margin: 4px 0;
}

.lede {
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
}

.micro {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Header */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--primary);
  color: var(--toy-white);
  border-radius: 12px;
  z-index: 100;
  font-weight: 800;
}

.app-header,
.header {
  background: linear-gradient(140deg, rgba(36, 86, 166, 0.96), rgba(77, 167, 232, 0.95)), var(--primary);
  color: var(--toy-white);
  padding: 26px 18px 20px;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.header-inner,
main {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--toy-yellow);
  font-family: var(--font-accent);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.eyebrow a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.eyebrow a:hover {
  color: var(--toy-yellow);
}

.subtitle {
  margin: 0;
  max-width: 56rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.hero-chip {
  min-height: 72px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  margin: 0;
}

.hero-chip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--toy-yellow);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-chip .chip-value {
  display: block;
  color: var(--toy-white);
  font-weight: 850;
  font-size: 1.02rem;
  margin: 0;
}

.hero-chip-editable .chip-value {
  cursor: text;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hero-chip-editable .chip-value:hover {
  border-bottom-color: var(--toy-yellow);
}

.hero-chip-editable .chip-value:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.16);
  border-bottom-color: var(--toy-yellow);
}

/* Layout */

main {
  padding: 18px 14px 36px;
}

section,
article {
  scroll-margin-top: 18px;
}

.card,
.print-page {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  margin: 28px 0;
}

.flat-card,
.mini-card,
.role-card,
.value-card,
.icon-card,
.print-card,
.cut-card,
.jump-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  min-height: var(--tap-target);
}

.mini-card,
.role-card,
.value-card,
.icon-card,
.print-card,
.cut-card {
  box-shadow: var(--shadow-small);
}

.mini-card strong,
.role-card strong,
.value-card strong,
.icon-card strong,
.print-card strong,
.cut-card strong,
.jump-card strong {
  display: block;
  margin-bottom: 4px;
  line-height: 1.15;
}

.mini-card p,
.role-card p,
.value-card p,
.icon-card p,
.print-card p,
.cut-card p,
.jump-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.jump-nav li {
  margin: 0;
}

.split-grid,
.roles,
.print-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.jump-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.jump-card:focus-visible,
.bottom-nav a:focus-visible,
.btn:focus-visible,
.fab:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--toy-yellow);
  outline-offset: 3px;
}

.tag-row {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 0;
}

.tag-row li {
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid #BFD8FF;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

/* Callouts */

.callout {
  margin: 14px 0;
  padding: 14px;
  border-left: 6px solid var(--primary);
  background: var(--primary-soft);
  border-radius: 16px;
}

.callout.gold {
  border-left-color: var(--accent-dark);
  background: var(--accent-soft);
}

.callout.red {
  border-left-color: var(--danger);
  background: var(--danger-soft);
}

.callout.green {
  border-left-color: var(--success);
  background: var(--success-soft);
}

.callout.brown {
  border-left-color: var(--brown);
  background: var(--brown-soft);
}

/* Scripts */

.script {
  margin: 12px 0;
  padding: 16px;
  background: var(--primary-dark);
  color: var(--toy-white);
  border-radius: 18px;
  font-size: 1.04rem;
  font-weight: 650;
}

.script p {
  margin: 0 0 12px;
}

.script p:last-child {
  margin-bottom: 0;
}

/* Expandable sections */

details {
  margin: 10px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

summary {
  position: relative;
  min-height: var(--tap-target);
  padding: 14px 50px 14px 14px;
  list-style: none;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 900;
}

details[open] summary::after {
  content: "–";
}

.details-body {
  padding: 0 14px 14px;
}

/* Timeline */

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

.time-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin: 0;
}

.time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  background: var(--primary);
  color: var(--toy-white);
  font-weight: 900;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.1;
}

.time-content {
  padding: 12px 12px 12px 0;
}

.time-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.time-content p {
  margin: 0;
}

.time-block.active {
  border-color: var(--primary);
  outline: 4px solid rgba(255, 210, 63, 0.5);
}

/* Checklists */

.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.checklist li {
  margin: 0;
}

.check {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  min-height: var(--tap-target);
  padding: 9px 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.check input {
  width: 24px;
  height: 24px;
  accent-color: var(--primary);
}

input[type="checkbox"]:checked {
  animation: checkPop 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Step cards */

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

.step-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  margin: 8px 0;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--toy-white);
  border-radius: 50%;
  font-weight: 900;
}

/* Tables */

.table-wrap {
  margin: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--primary-soft);
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

/* Value/icon cards */

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

.values li {
  margin: 0;
}

.value-card .mini-icon,
.cut-card .mini-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  color: var(--primary);
  stroke-width: 2.2;
}

.icon-options {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.icon-options li {
  margin: 0;
}

.icon-card {
  text-align: center;
  padding: 12px 8px;
}

.icon-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  color: var(--primary);
  stroke-width: 2.1;
}

.icon-card strong {
  margin-bottom: 2px;
  font-size: 0.88rem;
}

.icon-card p {
  font-size: 0.78rem;
}

.roles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roles li {
  margin: 0;
}

/* Timer */

.timer-panel {
  margin: 12px 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.timer-display {
  margin: 8px 0 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.timer-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.btn {
  min-height: var(--tap-target);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 15px;
  font-weight: 850;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: var(--toy-white);
  border-color: var(--primary);
}

.btn.warn {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: #E6C37D;
}

/* Bottom navigation */

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.bottom-nav-inner {
  list-style: none;
  padding: 0;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.bottom-nav-inner li {
  margin: 0;
}

.bottom-nav a,
.bottom-nav .nav-button {
  min-height: 54px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.08;
  touch-action: manipulation;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
}

.bottom-nav a:hover,
.bottom-nav .nav-button:hover {
  background-color: var(--primary-soft);
}

.bottom-nav .nav-icon {
  width: 19px;
  height: 19px;
  margin-bottom: 4px;
  color: var(--primary);
  stroke-width: 2.4;
}

.fab {
  display: none;
}

/* Table of Contents Sidebar */

.toc-sidebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 80vh;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 25;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
}

.toc-sidebar.open {
  transform: translateY(0);
}

.toc-header {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: var(--primary-soft);
  border-top: 1px solid var(--line);
  border-bottom: none;
  z-index: 26;
}

.toc-header h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.toc-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc-close:focus {
  outline: 2px solid var(--primary);
}

.toc-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column-reverse;
}

.toc-item {
  display: block;
  padding: 12px 14px;
  color: var(--primary);
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  line-height: 1.3;
}

.toc-item:hover {
  background: var(--primary-soft);
  border-left-color: var(--primary);
}

.toc-item.active {
  background: var(--primary-soft);
  border-left-color: var(--primary);
  font-weight: 700;
  color: var(--primary-dark);
}

.toc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 24;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.toc-overlay.open {
  opacity: 1;
  pointer-events: auto;
}


/* Print pages */

.print-page {
  margin: 18px 0;
}

.print-page h2 {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

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

.cut-grid li {
  margin: 0;
}

.cut-card {
  min-height: 150px;
  border-style: dashed;
}

.cut-card .mini-icon {
  display: block;
}

.cut-card strong {
  font-size: 1.12rem;
}

.cut-card .meaning {
  margin-top: 6px;
  color: var(--text);
  font-size: 0.92rem;
}

.print-line {
  min-height: 28px;
  margin: 6px 0;
  border-bottom: 1px solid var(--line);
}

/* Form inputs */

.share-out-section {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding: 16px;
  background: var(--primary-soft);
  border-radius: var(--radius-md);
}

.share-out-field {
  display: grid;
  gap: 6px;
}

.share-out-field label {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0;
  color: var(--text);
}

.share-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary);
  padding: 10px 0 6px;
  font-size: inherit;
  background: transparent;
  font-family: inherit;
  color: var(--text);
}

.share-input:focus {
  outline: none;
  border-bottom-color: var(--primary-dark);
  box-shadow: 0 2px 0 0 var(--primary-dark);
}

.share-input::placeholder {
  color: var(--muted);
}

.group-name-field {
  margin: 0 0 0;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--radius-md);
}

.group-name-field label {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.group-name-field input {
  border: none;
  border-bottom: 2px solid var(--primary);
  padding: 8px 0;
  font-size: 1.1rem;
  font-family: inherit;
  min-width: 100%;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.group-name-field input:focus {
  outline: none;
  border-bottom-color: var(--primary-dark);
  box-shadow: 0 2px 0 0 var(--primary-dark);
}

.group-name-field input::placeholder {
  color: var(--muted);
}

/* Responsive */

@media (min-width: 640px) {
  body {
    font-size: 18px;
  }

  .app-header,
  .header {
    padding-left: 26px;
    padding-right: 26px;
  }

  main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

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

  .split-grid,
  .roles,
  .print-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .icon-card svg {
    width: 50px;
    height: 50px;
  }

  .cut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .roles,
  .print-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  input[type="checkbox"]:checked {
    animation: none;
  }
}

/* Print */

@media print {
  @page {
    size: letter;
    margin: 0.5in;
  }

  :root {
    --bg: #fff;
    --shadow-soft: none;
    --shadow-small: none;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff;
    padding-bottom: 0;
    font-size: 11pt;
  }

  .bottom-nav,
  .fab,
  .timer-panel,
  .no-print {
    display: none !important;
  }

  /* Print = the cut-out packet only. Hide the on-screen guide (header, hero,
     and every working .card incl. the print-packet jump nav). Only the
     .print-page sections — plus any .card.print-keep a page opts in — reach
     paper. */
  .app-header,
  .header,
  main > .card {
    display: none !important;
  }

  main > .card.print-keep {
    display: block !important;
    page-break-before: always;
  }

  main {
    width: 100%;
    padding: 0;
  }

  .card,
  .flat-card,
  details,
  .time-block,
  .jump-card,
  .mini-card,
  .value-card,
  .role-card,
  .print-card,
  .icon-card,
  .print-page,
  .cut-card {
    box-shadow: none;
    break-inside: avoid;
  }

  details .details-body,
  details:not([open]) .details-body {
    display: block;
  }

  /* Force every <details> fully open on paper. Chromium hides a closed
     details' content via the native ::details-content slot, which the
     .details-body rule above can't reach — override the slot directly. */
  details::details-content {
    content-visibility: visible !important;
    display: block !important;
  }

  summary::after {
    display: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .values,
  .icon-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .role-card,
  .value-card,
  .print-card,
  .icon-card {
    min-height: 1in;
  }

  .icon-card svg,
  .value-card .mini-icon,
  .cut-card .mini-icon {
    color: #000;
  }

  .print-page {
    page-break-before: always;
    border: 0;
    padding: 0;
    margin: 0;
  }

  .cut-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8pt;
  }

  .cut-card {
    min-height: 2.6in;
    padding: 14pt;
    border: 1px dashed #777;
    justify-content: flex-start;
  }

  .cut-card .mini-icon {
    width: 30pt;
    height: 30pt;
  }

  .cut-card strong {
    font-size: 13pt;
  }

  .share-input {
    border-bottom: 1px solid #000;
    min-height: 24px;
    padding: 4px 0;
  }

  .group-name-field input {
    border-bottom: 1px solid #000;
  }
}
