/* Dashboard top section — loaded after Tailwind */

.dash-top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 0.25rem;
}

/* ── Hero (plain text — not a sticky site header) ── */
.dash-hero {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  position: static;
  z-index: auto;
}

.dash-hero__main {
  min-width: 0;
}

.dash-hero__title {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.dash-hero__lede {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 42rem;
}

.dash-hero__lede--short {
  display: none;
}

@media (min-width: 768px) {
  .dash-top {
    gap: 1.5rem;
  }

  .dash-hero__title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }

  .dash-hero__lede {
    font-size: 1rem;
    max-width: 48rem;
  }
}

/* ── Setup grid ── */
.dash-setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .dash-setup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }
}

/* ── Setup card ── */
.dash-setup-card {
  min-width: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(12, 18, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 20px 50px -30px rgba(0, 0, 0, 0.85);
  transition: border-color 0.2s ease;
}

.dash-setup-card:hover {
  border-color: rgba(84, 208, 245, 0.32);
}

.dash-setup-card.is-highlight {
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.15), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.dash-setup-card--warn {
  border-color: rgba(251, 146, 60, 0.42);
  background: linear-gradient(180deg, rgba(251, 146, 60, 0.08), rgba(12, 18, 32, 0.92));
}

.dash-setup-card__inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem;
  min-height: 100%;
  height: 100%;
}

.dash-setup-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 1.75rem;
}

.dash-setup-card__title {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.dash-setup-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0;
  min-height: 0;
  overflow: hidden;
}

.dash-setup-card__content {
  padding: 0.75rem;
  flex: 1 1 auto;
  min-height: 0;
}

.dash-setup-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.dash-setup-card__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-setup-card__icon svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke: #60a5fa;
}

.dash-setup-card__icon--ok {
  background: rgba(52, 211, 153, 0.15);
}

.dash-setup-card__icon--ok svg {
  stroke: var(--green);
  fill: var(--green);
}

.dash-setup-card__icon--warn {
  background: rgba(251, 146, 60, 0.15);
}

.dash-setup-card__icon--warn svg {
  stroke: #fb923c;
}

.dash-setup-card__info {
  min-width: 0;
  flex: 1;
}

.dash-setup-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-setup-card__detail {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-setup-card__meta {
  font-size: 0.6875rem;
  color: var(--ink-faint);
  margin: 0.5rem 0 0;
  padding-top: 0;
  min-height: 0;
}

.dash-setup-card__meta span {
  color: var(--ink-faint);
}

.dash-setup-card__meta code {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--ink-soft);
  word-break: break-all;
}

.dash-setup-card__alert {
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.08);
  padding: 0.75rem;
}

.dash-setup-card__alert-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fde68a;
  margin: 0 0 0.25rem;
}

.dash-setup-card__alert-text {
  font-size: 0.75rem;
  color: rgba(253, 230, 138, 0.85);
  margin: 0 0 0.625rem;
  line-height: 1.45;
}

.dash-setup-card__actions {
  display: flex;
  margin-top: auto;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.dash-setup-card__actions form {
  margin: 0;
  width: 100%;
}

.dash-setup-card__actions .dash-btn-primary,
.dash-setup-card__actions .dash-btn-danger {
  width: 100%;
  min-height: 0;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
}

/* ── Badges ── */
.dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.dash-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.dash-badge__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-badge--ok {
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
  color: #a7f3d0;
}

.dash-badge--ok .dash-badge__dot {
  background: var(--green);
}

.dash-badge--warn {
  border: 1px solid rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.12);
  color: #fed7aa;
}

.dash-badge--warn .dash-badge__dot {
  background: #fb923c;
}

.dash-badge--off {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
}

.dash-badge--off .dash-badge__dot {
  background: var(--ink-faint);
}

/* ── Buttons ── */
.dash-btn-primary,
.dash-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
}

.dash-btn-primary {
  background: linear-gradient(150deg, rgba(59, 184, 242, 0.45), rgba(47, 107, 255, 0.45));
  border-color: rgba(84, 208, 245, 0.45);
  color: #e8f8ff;
}

.dash-btn-primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

.dash-btn-primary--sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.dash-btn-danger {
  background: transparent;
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

.dash-btn-danger:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.5);
  color: #fecaca;
}

.dash-setup-card.is-highlight .dash-setup-card__actions .dash-btn-primary {
  width: 100%;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .dash-top {
    gap: 1.125rem;
  }

  .dash-hero {
    gap: 0.375rem;
  }

  .dash-hero__lede--full {
    display: none;
  }

  .dash-hero__lede--short {
    display: block;
    font-size: 0.875rem;
    max-width: none;
  }

  .dash-setup-card__inner {
    padding: 1rem;
  }

  .dash-setup-card__actions {
    justify-content: stretch;
  }

  .dash-setup-card__actions form {
    width: 100%;
  }

  .dash-setup-card__actions .dash-btn-primary,
  .dash-setup-card__actions .dash-btn-danger,
  .dash-setup-card.is-highlight .dash-setup-card__actions .dash-btn-primary {
    width: 100%;
  }

  body.app-shell main.app-main {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
  }

  .dashboard-page {
    gap: 1.25rem;
  }
}


/* ── Payment timeline (mobile-first, compact) ── */
.payment-timeline-section {
  overflow: hidden;
}

.payment-timeline-scroll {
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.payment-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-timeline-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.payment-timeline-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.payment-timeline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  min-width: 0;
}

.payment-timeline-badge {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.15rem 0.4rem;
}

.payment-timeline-hero {
  min-width: 0;
}

.payment-timeline-hero__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.payment-timeline-hero__name {
  margin: 0;
  min-width: 0;
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  word-break: break-word;
}

.payment-timeline-meta {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
  word-break: break-word;
}

.payment-timeline-hero__amount {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e8f8ff;
  white-space: nowrap;
}

.payment-timeline-desc {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
}

.payment-timeline-callout {
  margin: 0;
  padding: 0.3rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(84, 208, 245, 0.22);
  border-left-width: 3px;
  background: rgba(59, 184, 242, 0.08);
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(207, 250, 254, 0.9);
}

.payment-timeline-callout--idle {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
}

.payment-timeline-callout__label {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.85);
}

.payment-timeline-callout--idle .payment-timeline-callout__label {
  color: rgba(255, 255, 255, 0.45);
}

.payment-timeline-callout__label::after {
  content: ':';
}

.payment-timeline-card__foot {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.payment-timeline-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.75rem;
  margin: 0;
}

.payment-timeline-status__item {
  margin: 0;
  min-width: 0;
}

.payment-timeline-status__item--wide {
  grid-column: 1 / -1;
}

.payment-timeline-status__item dt {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.payment-timeline-status__item dd {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-word;
}

.payment-timeline-status__value--warn {
  color: rgba(253, 230, 138, 0.92);
}

.payment-timeline-note {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
}

.payment-timeline-pid {
  margin: 0;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 0.5625rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.32);
  word-break: break-all;
}

.payment-timeline-actions {
  display: flex;
  width: 100%;
}

.payment-timeline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(84, 208, 245, 0.45);
  background: linear-gradient(150deg, rgba(59, 184, 242, 0.38), rgba(47, 107, 255, 0.32));
  color: #e8f8ff;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.payment-timeline-cta:hover {
  filter: brightness(1.08);
  color: #fff;
}

.payment-timeline-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.payment-timeline-cta--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.payment-timeline-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  filter: none;
}

.payment-timeline-cta-icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

.payment-timeline-preview-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
}

.payment-timeline-preview-cancel {
  width: 100%;
  min-height: 2.25rem;
}

.payment-timeline-cta--modal {
  width: 100%;
}

@media (min-width: 640px) {
  .payment-timeline-list {
    gap: 0.5rem;
  }

  .payment-timeline-card {
    padding: 0.625rem 0.875rem;
    gap: 0.35rem;
  }

  .payment-timeline-card__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .payment-timeline-badges {
    flex: 1;
  }

  .payment-timeline-actions {
    width: auto;
    flex-shrink: 0;
  }

  .payment-timeline-cta {
    width: auto;
    min-width: 0;
    min-height: 1.875rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.6875rem;
  }

  .payment-timeline-hero__name {
    font-size: 0.875rem;
  }

  .payment-timeline-hero__amount {
    font-size: 0.875rem;
  }

  .payment-timeline-meta {
    font-size: 0.6875rem;
  }

  .payment-timeline-card__foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .payment-timeline-status {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.15rem 1rem;
    flex: 1;
    min-width: 0;
  }

  .payment-timeline-status__item {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
  }

  .payment-timeline-status__item--wide {
    grid-column: auto;
  }

  .payment-timeline-status__item dt {
    font-size: 0.625rem;
  }

  .payment-timeline-status__item dt::after {
    content: ':';
  }

  .payment-timeline-status__item dd {
    font-size: 0.6875rem;
  }

  .payment-timeline-pid {
    flex-shrink: 0;
    max-width: 14rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .payment-timeline-preview-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .payment-timeline-preview-cancel,
  .payment-timeline-cta--modal {
    width: auto;
    min-width: 0;
  }
}

/* Receipt modals — send details + preview */
.receipt-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow-y: auto;
}

.receipt-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.receipt-modal__shell {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.receipt-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 42rem;
  max-height: min(90vh, 100dvh);
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.receipt-modal__panel--wide {
  max-width: 64rem;
}

.receipt-modal__header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

.receipt-modal__header-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.receipt-modal__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
}

.receipt-modal__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.receipt-modal__title {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-all;
}

.receipt-modal__subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.receipt-modal__close {
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease, background 0.15s ease;
}

.receipt-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.receipt-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem;
}

.receipt-modal__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.receipt-detail-cell {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.receipt-detail-cell dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.receipt-detail-cell dd {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  word-break: break-word;
}

.receipt-modal__footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.receipt-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.receipt-modal__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.receipt-modal__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.receipt-modal__btn--primary {
  border: 1px solid rgba(84, 208, 245, 0.45);
  background: linear-gradient(150deg, rgba(59, 184, 242, 0.35), rgba(47, 107, 255, 0.35));
  color: #e8f8ff;
}

.receipt-modal__btn--primary:hover {
  filter: brightness(1.08);
}

.receipt-modal__preview-fields {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.receipt-modal__preview-iframe-wrap {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

.receipt-modal__preview-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 55vh;
  border: 0;
}

.receipt-modal__preview-iframe-wrap iframe[hidden] {
  display: none;
}

.receipt-modal__preview-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 55vh;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.875rem;
}

.receipt-modal__preview-loading svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #22d3ee;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.receipt-modal__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}

@media (min-width: 640px) {
  .receipt-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .receipt-modal__grid .receipt-detail-cell--wide {
    grid-column: span 2;
  }

  .receipt-modal__footer {
    flex-direction: row;
    justify-content: flex-end;
  }

  .receipt-modal__preview-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
