.account-page {
  min-height: 100vh;
}

.account-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.account-wrap h1 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

.account-lede,
.account-status {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.account-status.err {
  color: var(--rose-deep);
}

.booking-list {
  display: grid;
  gap: 0.85rem;
}

.appt-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.1rem 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.appt-card h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.appt-meta.appt-note {
  color: var(--rose-deep);
  font-size: 0.85rem;
}

.btn-tiny {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
}

.appt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reschedule-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 22, 20, 0.48);
  display: grid;
  align-items: end;
}

.reschedule-overlay[hidden] {
  display: none;
}

@media (min-width: 720px) {
  .reschedule-overlay {
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
}

.reschedule-sheet {
  width: min(560px, 100%);
  max-height: min(92svh, 820px);
  overflow: auto;
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 720px) {
  .reschedule-sheet {
    border-radius: 22px;
  }
}

.reschedule-current {
  margin: 0;
  padding: 0 1.25rem 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reschedule-sheet .date-row,
.reschedule-sheet .time-grid {
  padding: 0 1.25rem 1rem;
}

.reschedule-sheet .booking-footer {
  margin-top: auto;
}
