:root {
  --ink: #10271d;
  --muted: #607067;
  --paper: #f6f7f2;
  --white: #ffffff;
  --green: #20a66a;
  --green-dark: #11784a;
  --lime: #c9f269;
  --navy: #102d3a;
  --line: #dfe6df;
  --danger: #a93434;
  --danger-bg: #fff0ef;
  --shadow: 0 24px 70px rgba(18, 52, 38, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid rgba(32, 166, 106, .35);
  outline-offset: 3px;
}
.hidden { display: none !important; }

.site-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-accent { color: var(--green); }
.brand-mark {
  width: 29px;
  height: 29px;
  position: relative;
  display: inline-flex;
  align-items: end;
  gap: 3px;
  transform: skew(-8deg);
}
.brand-mark span {
  width: 7px;
  border-radius: 5px 5px 1px 1px;
  background: var(--green);
}
.brand-mark span:nth-child(1) { height: 12px; }
.brand-mark span:nth-child(2) { height: 20px; }
.brand-mark span:nth-child(3) { height: 28px; background: var(--lime); }
.sandbox-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd7ce;
  border-radius: 999px;
  padding: 8px 13px;
  color: #405349;
  background: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sandbox-badge span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #e5a30a;
  box-shadow: 0 0 0 4px #fae9ba;
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 58px 32px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 500px);
  align-items: center;
  gap: 84px;
}
.hero-copy { padding-bottom: 30px; }
.eyebrow, .step-label {
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(52px, 6.7vw, 88px);
  line-height: .91;
  letter-spacing: -.07em;
}
.hero h1 span { color: var(--green); }
.hero-lede {
  max-width: 620px;
  margin: 30px 0 36px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  border-top: 1px solid #d7dfd8;
  padding-top: 22px;
  gap: 16px;
}
.trust-row strong { display: block; font-size: 20px; letter-spacing: -.04em; }
.trust-row span { color: var(--muted); font-size: 12px; }

.checkout-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(21, 90, 60, .1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card-heading, .transactions-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.card-heading h2, .confirmation h2, .how-it-works h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.04em;
}
.lock {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-dark); background: #e9f8f0;
  font-size: 22px; font-weight: 900;
}
form > label, fieldset, .two-column, .payment-label { margin-top: 22px; }
label, legend, .payment-label {
  color: #30443a;
  font-size: 12px;
  font-weight: 750;
}
label span { display: block; margin-bottom: 8px; }
select, input, textarea {
  width: 100%;
  border: 1px solid #ccd7ce;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfa;
  transition: border-color .15s, box-shadow .15s;
}
select, input { height: 46px; padding: 0 13px; }
textarea { min-height: 132px; padding: 12px 13px; resize: vertical; line-height: 1.45; }
select:focus, input:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(32,166,106,.12);
}
.fundraiser-picker { margin-top: 22px; }
.fundraiser-picker label { display: block; margin-bottom: 8px; }
.participant-banner {
  margin-top: 10px;
  padding: 10px 13px;
  border-radius: 10px;
  color: #125f3c;
  background: #e7f8ef;
  font-size: 13px;
}
.progress-panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #d5e2d8;
  border-radius: 13px;
  background: white;
}
.progress-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.progress-summary > div:last-child { text-align: right; }
.progress-summary span { display: block; font-size: 15px; font-weight: 850; letter-spacing: -.02em; }
.progress-summary small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.progress-track {
  height: 12px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ece6;
}
.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--lime));
  transition: width .5s ease;
}
.progress-panel > p { margin: 9px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.share-panel {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid #d5e2d8;
  border-radius: 13px;
  background: #f2faf5;
}
.share-heading-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.share-kicker { margin: 0 0 3px; color: var(--green-dark); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.share-panel h3 { margin: 0; font-size: 16px; letter-spacing: -.02em; }
.share-status { color: var(--green-dark); font-size: 12px; font-weight: 800; }
.share-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 12px; }
.share-button {
  min-height: 40px;
  padding: 0 9px;
  border: 1px solid #c6d7ca;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: white;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.share-button:hover { background: #e8f5ed; }
.share-button.share-primary { border-color: var(--green); color: white; background: var(--green-dark); }
.share-button.share-primary:hover { background: #0d633d; }
.activity-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.activity-column { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfa; }
.activity-column h3 { margin: 0 0 9px; font-size: 13px; }
.activity-list { display: grid; gap: 7px; }
.activity-list > div { display: flex; justify-content: space-between; gap: 10px; font-size: 11px; }
.activity-list strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.activity-list span { flex: 0 0 auto; color: var(--green-dark); font-weight: 800; }
.activity-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.spiritwear-button {
  min-height: 66px;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: white;
  background: var(--navy);
  box-shadow: 0 9px 22px rgba(10, 45, 35, .16);
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 242, 105, .3);
  transition: transform .15s, background .15s;
}
.spiritwear-button:hover { transform: translateY(-1px); background: #153c48; }
.spiritwear-button small {
  display: block;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.spiritwear-button strong { display: block; margin-top: 3px; font-size: 17px; }
.spiritwear-return {
  display: block;
  margin-top: 3px;
  color: #e7efe9;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.spiritwear-arrow {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  font-size: 21px;
  font-weight: 900;
}
.qr-dialog {
  width: min(420px, calc(100% - 32px));
  padding: 30px;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}
.qr-dialog::backdrop { background: rgba(9, 31, 22, .65); }
.qr-dialog h2 { margin: 0; font-size: 26px; letter-spacing: -.04em; }
.qr-organization { margin: 8px 0 18px; color: var(--muted); }
.qr-code { width: min(280px, 100%); margin: 0 auto; }
.qr-code svg { display: block; width: 100%; height: auto; }
.qr-help { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.qr-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #eef2ed;
  font-size: 24px;
  line-height: 1;
}
fieldset { padding: 0; border: 0; }
legend { margin-bottom: 10px; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.amount-button {
  min-height: 48px;
  border: 1px solid #ccd7ce;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfa;
  font-weight: 800;
}
.amount-button:hover, .amount-button.selected {
  border-color: var(--green);
  background: #eaf9f1;
  color: var(--green-dark);
}
.custom-amount {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-amount > span:first-child { margin: 0; }
.money-input {
  position: relative;
  display: block;
  width: 145px;
}
.money-input > span {
  position: absolute; left: 12px; top: 13px;
  margin: 0; color: var(--muted);
}
.money-input input { padding-left: 27px; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-label { display: flex; justify-content: space-between; }
.payment-label span:last-child { color: var(--muted); font-weight: 600; }
.card-container {
  min-height: 92px;
  margin-top: 8px;
  border-radius: 10px;
}
.card-loading {
  height: 56px;
  padding: 18px 14px;
  border: 1px solid #ccd7ce;
  border-radius: 10px;
  color: var(--muted);
  background: #fbfcfa;
  font-size: 13px;
}
.split-line {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.split-line.subdued {
  margin-top: 9px;
  padding-top: 0;
  border: 0;
  color: var(--muted);
}
.primary-button, .secondary-button, .text-button {
  border: 0;
  font-weight: 800;
  transition: transform .15s, background .15s, opacity .15s;
}
.primary-button {
  width: 100%;
  min-height: 53px;
  margin-top: 22px;
  border-radius: 12px;
  color: #0c2c1e;
  background: var(--lime);
  box-shadow: 0 9px 22px rgba(128, 169, 39, .22);
}
.primary-button:hover:not(:disabled) { transform: translateY(-1px); background: #d5f787; }
.primary-button:disabled { opacity: .52; cursor: not-allowed; }
.primary-button.compact { min-height: 46px; margin-top: 17px; }
.secondary-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #cbd7ce;
  border-radius: 10px;
  color: var(--ink);
  background: white;
}
.secondary-button:hover { background: #f2f6f2; }
.text-button { padding: 7px 2px; color: var(--green-dark); background: transparent; }
.fine-print {
  margin: 14px 0 0;
  text-align: center;
  color: #7b8981;
  font-size: 11px;
  line-height: 1.5;
}
.fee-disclosure {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.notice, .error-message {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.notice { color: #145c3b; background: #e7f8ef; border: 1px solid #bce8d0; }
.error-message { color: var(--danger); background: var(--danger-bg); border: 1px solid #f1c4c0; }

.confirmation { text-align: center; padding: 26px 4px 4px; }
.checkmark {
  width: 60px; height: 60px; margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #0c4f31; background: var(--lime);
  font-size: 28px; font-weight: 900;
}
.confirmation > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.receipt-grid {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}
.receipt-grid div { padding: 13px 15px; border-bottom: 1px solid var(--line); }
.receipt-grid div:nth-child(odd) { border-right: 1px solid var(--line); }
.receipt-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.receipt-grid dt { color: var(--muted); font-size: 11px; }
.receipt-grid dd { margin: 4px 0 0; font-size: 14px; font-weight: 800; }
.confirmation .secondary-button { display: inline-flex; align-items: center; text-decoration: none; }
.confirmation .text-button { display: block; margin: 13px auto 0; }

.how-it-works {
  padding: 86px max(32px, calc((100vw - 1176px) / 2));
  color: white;
  background: var(--navy);
}
.how-it-works > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.how-it-works .eyebrow { color: var(--lime); }
.how-it-works h2 { max-width: 520px; font-size: 42px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.feature-grid article {
  min-height: 210px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.feature-grid article > span { color: var(--lime); font-size: 12px; font-weight: 850; }
.feature-grid h3 { margin: 53px 0 8px; font-size: 20px; }
.feature-grid p { margin: 0; color: #b8c6c4; font-size: 14px; line-height: 1.55; }

.admin-section { max-width: 1180px; margin: 0 auto; padding: 72px 32px; }
.admin-section details {
  overflow: hidden;
  border: 1px solid #d7e0d8;
  border-radius: var(--radius);
  background: var(--white);
}
.admin-section summary {
  padding: 22px 25px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  cursor: pointer;
}
.admin-section summary::-webkit-details-marker { display: none; }
.admin-section summary span { color: var(--muted); font-size: 12px; font-weight: 600; }
.admin-body { padding: 0 25px 25px; border-top: 1px solid var(--line); }
.admin-login { padding: 23px 0 0; }
.admin-key-row { display: flex; gap: 9px; max-width: 600px; margin-top: 8px; }
.admin-key-row .secondary-button { flex: 0 0 auto; }
.admin-login p { color: var(--muted); font-size: 11px; }
.admin-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; margin-top: 23px; }
.admin-card { padding: 22px; border: 1px solid var(--line); border-radius: 15px; }
.admin-card h3 { margin: 0 0 16px; letter-spacing: -.025em; }
.admin-card label { display: block; margin-top: 12px; }
.admin-card label input, .admin-card label select, .admin-card label textarea { margin-top: 6px; }
.organization-list { display: grid; gap: 9px; }
.organization-row, .payment-row {
  padding: 12px;
  border-radius: 10px;
  background: #f5f7f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.organization-row strong, .payment-row strong { display: block; font-size: 13px; }
.organization-row small, .payment-row small { color: var(--muted); }
.organization-row button, .payment-row button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #cbd7ce;
  border-radius: 8px;
  color: var(--green-dark);
  background: white;
  font-size: 11px;
  font-weight: 800;
}
.transactions-card { margin-top: 16px; }
.transactions-heading { align-items: center; }
.payments-list { display: grid; gap: 8px; margin-top: 14px; }
.participant-list { display: grid; gap: 8px; margin-top: 14px; }
.participant-row { padding: 12px; border-radius: 10px; background: #f5f7f4; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.participant-row strong { display: block; font-size: 13px; }
.participant-row small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.participant-row.is-paused { opacity: .62; }
.participant-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.participant-actions button, .participant-actions a { flex: 0 0 auto; min-height: 34px; padding: 8px 11px; border: 1px solid #cbd7ce; border-radius: 8px; color: var(--green-dark); background: white; font-size: 11px; font-weight: 800; text-decoration: none; }
.participant-toolbar { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.campaign-grid { grid-template-columns: .8fr 1.2fr; }
.admin-help { margin: 12px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.launch-card { margin-top: 16px; }
.launch-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin: 16px 0; }
.launch-steps span { padding: 12px; border-radius: 10px; color: var(--muted); background: #f4f7f3; font-size: 12px; line-height: 1.4; }
.launch-steps strong { display: block; margin-bottom: 4px; color: var(--green-dark); }
.empty-state { padding: 24px; color: var(--muted); text-align: center; background: #f7f8f5; border-radius: 10px; }
.participant-print-sheet { display: none; }

footer {
  padding: 30px 32px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}
.footer-brand { font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a, .legal-back, .legal-copy a {
  color: var(--green-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 28px auto 80px;
}
.legal-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(18, 52, 38, .08);
}
.legal-card h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
}
.legal-updated { margin: 18px 0 34px; color: var(--muted); font-size: 14px; }
.legal-intro {
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  color: #29463a;
  background: #edf8f1;
  font-size: 18px;
  line-height: 1.65;
}
.legal-copy { margin-top: 34px; }
.legal-copy section + section { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.03em; }
.legal-copy p, .legal-copy li { color: #40534a; font-size: 16px; line-height: 1.7; }
.legal-copy ul { padding-left: 21px; }
.legal-copy li + li { margin-top: 8px; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-option { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #f8faf7; }
.contact-option strong { display: block; margin-bottom: 8px; font-size: 18px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 35px; }
  .hero-copy { text-align: center; }
  .hero-lede, .trust-row { margin-left: auto; margin-right: auto; }
  .admin-grid { grid-template-columns: 1fr; }
  .campaign-grid { grid-template-columns: 1fr; }
  .launch-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 20px; }
  .sandbox-badge { padding: 7px 9px; font-size: 10px; }
  .hero { padding: 35px 16px 60px; }
  .hero h1 { font-size: 52px; }
  .hero-lede { font-size: 16px; }
  .trust-row { gap: 8px; }
  .trust-row strong { font-size: 17px; }
  .checkout-card { padding: 22px 18px; border-radius: 22px; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .two-column { grid-template-columns: 1fr; }
  .share-actions { grid-template-columns: 1fr 1fr; }
  .activity-panel { grid-template-columns: 1fr; }
  .how-it-works { padding: 65px 20px; }
  .how-it-works h2 { font-size: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 160px; }
  .feature-grid h3 { margin-top: 30px; }
  .admin-section { padding: 48px 16px; }
  .admin-key-row { flex-direction: column; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
  .legal-main { margin-top: 12px; }
  .legal-card { padding: 28px 22px; }
  .legal-intro { font-size: 16px; }
  .contact-options { grid-template-columns: 1fr; }
  .launch-steps { grid-template-columns: 1fr; }
  .participant-row { align-items: stretch; flex-direction: column; }
  .participant-actions { justify-content: flex-start; }
}

@media print {
  @page { size: letter; margin: .45in; }
  body { background: white; }
  body > *:not(.participant-print-sheet) { display: none !important; }
  .participant-print-sheet {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: .22in;
  }
  .print-card {
    min-height: 3.55in;
    padding: .22in;
    display: grid;
    grid-template-columns: 1fr 1.35in;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: .12in;
    break-inside: avoid;
    border: 1px solid #b8c5bc;
    border-radius: 12px;
    color: #10271d;
  }
  .print-copy p { margin: 0 0 .2in; font-size: 20px; font-weight: 900; letter-spacing: -1px; }
  .print-copy p span { color: #20a66a; }
  .print-copy h2 { margin: 0; font-size: 21px; }
  .print-copy h3 { margin: 5px 0 10px; font-size: 12px; }
  .print-copy small { color: #53635b; font-size: 10px; }
  .print-qr svg { width: 1.35in; height: 1.35in; }
  .print-card code {
    grid-column: 1 / -1;
    overflow-wrap: anywhere;
    color: #53635b;
    font-family: ui-monospace, monospace;
    font-size: 7px;
  }
}
