:root {
  color-scheme: light;
  --ink: #2d0414;
  --muted: #755f68;
  --line: #eadfce;
  --soft: #fbf5ec;
  --surface: #ffffff;
  --accent: #2d0414;
  --accent-dark: #19020b;
  --secondary: #edd7b5;
  --secondary-soft: #fbf0df;
  --coral: #d9664f;
  --amber: #c88b22;
  --shadow: 0 18px 45px rgba(45, 4, 20, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fbf7f0;
  color: var(--ink);
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px;
  background: var(--accent);
  color: #fffaf2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.brand-kicker,
.eyebrow,
.label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-kicker {
  color: var(--secondary);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.06;
  max-width: 720px;
}

h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

h4 {
  margin-bottom: 8px;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav-item {
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: var(--secondary);
  background: transparent;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.nav-item.active,
.nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.mini-card {
  margin-top: auto;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mini-card .label {
  color: var(--secondary);
}

.mini-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.sidebar-link {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: none;
}

.sidebar-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mini-card span {
  display: block;
  color: #f4e6cf;
  line-height: 1.45;
}

main {
  min-width: 0;
  padding: 24px 32px 32px;
}

.topbar {
  min-height: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 4px;
  border-bottom: 0;
}

.booking-layout {
  max-width: 920px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.secondary-action {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: var(--line);
}

.secondary-action:hover {
  border-color: rgba(45, 4, 20, 0.28);
  background: var(--secondary-soft);
}

.secondary-action svg,
.search-field svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secondary-action svg {
  width: 18px;
  height: 18px;
}

.primary-action {
  background: var(--accent);
  color: #ffffff;
}

.primary-action:hover {
  background: var(--accent-dark);
}

.primary-action:disabled,
.secondary-action:disabled,
.danger-action:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.primary-action.is-loading,
.secondary-action.is-loading,
.danger-action.is-loading {
  cursor: wait;
  position: relative;
}

.primary-action.is-loading::before,
.secondary-action.is-loading::before,
.danger-action.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

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

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.panel {
  display: none;
  padding-top: 6px;
}

.panel.active {
  display: block;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: 22px;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 18px;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.skeleton-block {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: #f3e8d8;
}

.skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: skeleton-shimmer 1.15s ease-in-out infinite;
}

.date-skeleton {
  min-height: 56px;
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.date-skeleton span,
.date-skeleton small {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: #e3cda9;
}

.date-skeleton span {
  width: 72%;
  margin-bottom: 9px;
}

.date-skeleton small {
  width: 44%;
}

.date-button,
.slot-button {
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
}

.date-button.active,
.slot-button.active {
  border-color: var(--accent);
  background: var(--secondary);
  color: var(--accent-dark);
}

.date-button small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 10px;
  min-height: 66px;
  margin-bottom: 18px;
}

.availability-time-picker {
  display: grid;
  gap: 8px;
}

.availability-time-picker > span {
  color: var(--muted);
  font-weight: 900;
}

.availability-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 10px;
}

.availability-time-grid .empty-state {
  grid-column: 1 / -1;
}

.slot-skeleton {
  min-height: 56px;
  border: 1px solid var(--line);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}

.booking-form,
.admin-form {
  display: grid;
  gap: 16px;
}

.form-state {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff8e8;
  color: #714b08;
  border: 1px solid #f1d89e;
  font-weight: 800;
}

.form-message {
  display: none;
  margin: 0;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fffaf2;
  font-weight: 800;
  line-height: 1.4;
}

.form-message.visible {
  display: block;
}

.form-message.error {
  border-color: #efc5bd;
  color: #962f1c;
  background: #fff2ef;
}

.form-message.success {
  border-color: #d8bd91;
  color: var(--accent-dark);
  background: var(--secondary-soft);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font-size: 1rem;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

.payment-choice {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

legend {
  color: var(--muted);
  font-weight: 800;
  padding: 0 6px;
}

.radio-card {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.radio-card small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
  line-height: 1.35;
}

.payment-panel {
  margin-top: 22px;
}

.consultations-history {
  margin-top: 18px;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.qr,
.qr-image {
  aspect-ratio: 1;
  width: 100%;
  max-width: 220px;
}

.qr-image {
  display: block;
  border: 10px solid #ffffff;
  outline: 1px solid var(--line);
  border-radius: 8px;
}

.qr {
  border: 10px solid #ffffff;
  outline: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 3px;
  padding: 8px;
}

.qr span {
  border-radius: 2px;
  background: #eadbc6;
}

.qr span.on {
  background: var(--accent);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.success-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent-dark);
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.confirmation-panel,
.reschedule-modal,
.history-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  margin: 0;
  padding: 18px;
  background: rgba(45, 4, 20, 0.58);
  backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
}

.confirmation-card,
.reschedule-card,
.history-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(45, 4, 20, 0.28);
  padding: 26px;
}

.reschedule-card {
  width: min(760px, 100%);
}

.history-card {
  width: min(900px, 100%);
}

.confirmation-card h3,
.reschedule-card h3,
.history-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.confirmation-card p,
.reschedule-card p,
.history-card p {
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 900;
}

.modal-close:hover {
  background: var(--secondary);
  color: var(--accent);
}

.confirmation-panel:not(.hidden),
.reschedule-modal:not(.hidden),
.history-modal:not(.hidden) {
  display: flex;
}

.doctor-grid {
  grid-template-columns: minmax(260px, 0.7fr) minmax(360px, 1.3fr);
  margin-bottom: 22px;
}

.records-grid {
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1.08fr);
}

.admin-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.admin-header h3 {
  font-size: 1.45rem;
}

.admin-auth {
  max-width: 520px;
}

.admin-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-tab {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--accent-dark);
  padding: 0 14px;
  font-weight: 900;
}

.admin-tab.active,
.admin-tab:hover {
  border-color: var(--accent);
  background: var(--secondary);
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.detail-tab {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--accent-dark);
  padding: 0 13px;
  font-weight: 900;
}

.detail-tab.active,
.detail-tab:hover {
  border-color: var(--accent);
  background: var(--secondary);
}

.detail-page {
  display: none;
}

.detail-page.active {
  display: block;
}

.admin-subpanel {
  display: none;
}

.admin-subpanel.active {
  display: block;
}

.consultation-search {
  margin-bottom: 12px;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 19px;
  height: 19px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.search-field input {
  padding-left: 44px;
  min-height: 46px;
  box-shadow: 0 10px 24px rgba(45, 4, 20, 0.06);
}

.search-field input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(45, 4, 20, 0.12);
}

.back-action {
  margin-bottom: 16px;
}

.wide-field {
  grid-column: 1 / -1;
}

.hint {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-list,
.appointments {
  display: grid;
  gap: 10px;
}

.admin-item,
.appointment-item,
.record-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.appointment-button {
  width: 100%;
  background: #ffffff;
  color: inherit;
  text-align: left;
}

.admin-item strong,
.appointment-item strong,
.record-item strong {
  display: block;
  margin-bottom: 3px;
}

.admin-item span,
.appointment-item span,
.record-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.appointment-item .appointment-notes {
  display: block;
  margin-top: 4px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  line-height: 1.35;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.pending {
  background: #fff8e8;
  color: #714b08;
}

.status-pill.cancelled {
  background: #fff2ef;
  color: #962f1c;
}

.status-pill.completed {
  background: #edf7ee;
  color: #276738;
}

.record-form {
  display: grid;
  gap: 14px;
}

.record-form textarea {
  min-height: 96px;
}

.record-history {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.patient-summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(220px, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  margin-bottom: 16px;
}

.summary-item {
  display: grid;
  gap: 4px;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-item strong {
  font-size: 0.95rem;
}

.payment-ledger {
  margin-top: 22px;
}

.appointment-payment {
  margin-top: 18px;
}

.admin-cancel-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #f0b5aa;
  border-radius: 8px;
  background: #fff8f6;
  margin: 0 0 18px;
}

.admin-cancel-box > .danger-action {
  justify-self: start;
}

.admin-cancel-options {
  display: grid;
  gap: 10px;
}

.admin-cancel-options .secondary-action,
.admin-cancel-options .danger-action {
  justify-self: start;
}

.patient-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.timeline-button {
  width: 100%;
  color: inherit;
  text-align: left;
}

.timeline-button:hover {
  border-color: var(--accent);
  background: #fffaf2;
}

.timeline-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.timeline-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.timeline-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.timeline-records {
  display: grid;
  gap: 8px;
}

.timeline-record {
  padding: 10px;
  border-radius: 8px;
  background: var(--soft);
}

.timeline-record p {
  margin-bottom: 3px;
  color: var(--muted);
}

.history-modal-body,
.history-modal-section {
  display: grid;
  gap: 14px;
}

.history-modal-body {
  margin-top: 14px;
}

.history-summary {
  margin-bottom: 0;
}

.history-record-form textarea {
  min-height: 76px;
  color: var(--text);
  background: #fffdf9;
}

.payments-list {
  display: grid;
  gap: 10px;
}

.payment-item {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.payment-item-compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.payment-item strong,
.payment-item span {
  display: block;
}

.payment-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.record-item {
  grid-template-columns: 1fr;
  align-items: start;
  background: #fffaf2;
}

.record-item p {
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.45;
}

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

.requirements-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  min-height: 150px;
}

.requirements-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.danger-action {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid #f0b5aa;
  color: #962f1c;
  background: #fff2ef;
  font-weight: 800;
  padding: 0 12px;
}

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

.flow-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  min-height: 168px;
}

.flow-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 14px;
}

.flow-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.hidden {
  display: none;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .two-column,
  .doctor-grid,
  .records-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid,
  .requirements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 22px;
    gap: 18px;
  }

  .brand {
    align-items: flex-start;
  }

  .nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-item {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .mini-card {
    margin-top: 0;
  }

  .two-column,
  .payment-layout,
  .doctor-grid,
  .flow-grid,
  .requirements-grid,
  .admin-header,
  .admin-tools,
  .records-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    min-height: 0;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  main,
  .sidebar {
    padding: 16px;
  }

  main {
    padding-top: 16px;
  }

  .brand-mark {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .topbar {
    gap: 8px;
    padding-bottom: 2px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .date-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .date-button {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }

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

  .surface {
    padding: 16px;
  }

  .admin-item,
  .appointment-item,
  .payment-item {
    grid-template-columns: 1fr;
  }

  .patient-summary {
    grid-template-columns: 1fr;
  }

  .timeline-head,
  .timeline-detail {
    grid-template-columns: 1fr;
  }

  .payment-layout {
    justify-items: stretch;
  }

  #qrMount,
  .qr,
  .qr-image {
    justify-self: center;
    max-width: 210px;
  }

  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-tabs,
  .detail-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-height: 48px;
  }

  .flow-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  main,
  .sidebar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .slot-grid {
    grid-template-columns: 1fr;
  }

  .surface {
    padding: 14px;
  }
}
