:root {
  --bg: #0b0b0b;
  --yellow: #ffc400;
  --yellow2: #ffea7a;
  --card: rgba(0, 0, 0, 0.28);
  --card2: rgba(0, 0, 0, 0.36);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --stroke: rgba(255, 255, 255, 0.22);
  --shadow: rgba(0, 0, 0, 0.35);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--yellow);
  color: var(--text);
  overflow-x: hidden;
}

/* Parallax background layers (kept lightweight for mobile) */
.parallax {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.layer {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.layer--back {
  background-image: none;
  background-color: var(--yellow);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.layer--mid {
  background: transparent;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.layer--front {
  background: transparent;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.page {
  min-height: 100svh; /* fit initial viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  /* Fixed .topActions--top can wrap to 2+ rows when logged in — reserve enough space */
  padding: max(96px, calc(env(safe-area-inset-top, 0px) + 80px)) 16px 28px;
  position: relative;
  z-index: 1;
}

.brand {
  text-align: center;
  margin-bottom: 18px;
  margin-top: 8px; /* extra gap below the fixed menu reserve */
}

.topActions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.topActions--top {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin-top: 0;
  position: fixed;
  top: max(8px, env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 5; /* above everything */
  padding: 6px 14px 10px;
  justify-content: flex-end;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}

.topActions--top.menuHiddenOnScroll {
  transform: translateY(-130%);
  opacity: 0.01;
  pointer-events: none;
}

.smallButton {
  padding: 8px 12px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(180deg, #ffda2a 0%, #ffc400 100%);
  color: #161616;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.08s ease, filter 0.12s ease;
}

.smallButton:hover {
  filter: brightness(1.03);
}

.smallButton:active {
  transform: translateY(1px);
}

.smallButton--secondary {
  background: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.whatsappFloatBtn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 6;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.08s ease, filter 0.12s ease;
}

.whatsappFloatBtn:hover {
  filter: brightness(1.03);
}

.whatsappFloatBtn:active {
  transform: translateY(1px);
}

.brand__logo {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 950;
}

.brand__logoLine {
  font-weight: 950;
  font-size: clamp(26px, 5vw, 52px);
  line-height: 0.98;
}

.brand__logoLine--accent {
  color: var(--bg);
}

.card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px var(--shadow);
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* display:flex on .field beats the default [hidden] behaviour in several browsers */
.field[hidden] {
  display: none !important;
}

.field--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.input,
.form select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  outline: none;
  font-size: 16px;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.input:focus,
.form select:focus {
  border-color: rgba(255, 212, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.22);
}

.form select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 212, 0, 0.95) 50%),
    linear-gradient(135deg, rgba(255, 212, 0, 0.95) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

/* make mobile date picker feel closer to the rest */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) grayscale(1);
  opacity: 0.9;
}

.button {
  margin-top: 2px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffda2a 0%, #ffc400 100%);
  color: #161616;
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.08s ease, filter 0.12s ease;
}

.button:hover {
  filter: brightness(1.03);
}

.button:active {
  transform: translateY(1px);
}

.message {
  margin: 0;
  min-height: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.priceWrap {
  margin-top: 4px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.priceWrap[hidden] {
  display: none !important;
}

.priceTitle {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}

.priceValue {
  font-weight: 950;
  color: #161616;
  font-size: 18px;
}

.cleanTypePanel {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.16);
  padding: 14px 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease;
}

/* When shown, we remove the hidden attribute and toggle a class for animation */
.cleanTypePanel.is-open {
  max-height: 280px;
  opacity: 1;
  transform: translateY(0);
}

.cleanTypeOption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cleanTypeOption + .cleanTypeOption {
  margin-top: 10px;
}

.cleanTypeOption input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dial {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dial::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scale(0);
  transition: transform 160ms ease;
}

.cleanTypeOption input:checked + .dial::after {
  transform: scale(1);
}

/* Pricing popup cards */
.pricingCardRow {
  cursor: default;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.pricingCardRow .optionText,
.pricingCardRow .optionPrice {
  color: rgba(0, 0, 0, 0.92);
  font-weight: 900;
}

.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
}

.modalOverlay[hidden] {
  display: none !important;
}

.modalCard {
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: auto;
  max-height: 86vh;
}

.modalHeader {
  padding: 18px 18px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modalTitle {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.modalSubtitle {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.modalCloseBtn {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalCloseBtn:active {
  transform: translateY(1px);
}

.modalBody {
  padding: 0 18px 18px;
}

.modalForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modalTextarea {
  resize: vertical;
  min-height: 96px;
}

.modalApplyBtn {
  margin-top: 6px;
}

.modalThankYou {
  padding: 0 18px 18px;
}

.modalThankYouTitle {
  font-weight: 950;
  color: rgba(255, 234, 122, 0.98);
  font-size: 18px;
  margin-top: 6px;
}

.modalThankYouText {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

#bookingThankYouOverlay .modalTitle,
#bookingThankYouOverlay .modalSubtitle,
#bookingThankYouOverlay #bookingThankYouMessage {
  color: #ffffff;
}

.optionText {
  flex: 1 1 auto;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
}

.optionPrice {
  font-weight: 950;
  color: #161616;
  font-size: 14px;
  flex: 0 0 auto;
}

.infoBtn {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 212, 0, 0.95);
  color: #161616;
  font-weight: 950;
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  transition: transform 0.08s ease, filter 0.12s ease;
}

.infoBtn:hover {
  filter: brightness(1.03);
}

.infoBtn:active {
  transform: translateY(1px);
}

.cleanInfoOverlay {
  z-index: 40; /* above other modals */
}

.cleanInfoCard {
  max-width: 560px;
}

.cleanInfoContent ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.cleanInfoContent li {
  margin: 6px 0;
}

.thumbBtn {
  width: 110px;
  height: 86px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.08);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.thumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbVideoBadge {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
}

.lightboxOverlay[hidden] {
  display: none !important;
}

.lightboxCard {
  width: 100%;
  max-width: 780px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: auto;
  max-height: 86vh;
}

.lightboxTitle {
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.lightboxBody img,
.lightboxBody video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.uploadProgress {
  width: 100%;
  height: 12px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.uploadProgressBar {
  height: 100%;
  background: linear-gradient(180deg, #ffda2a 0%, #ffc400 100%);
  width: 0%;
  border-radius: 999px;
}

/* Logged-in menu often wraps here; avoid covering logo / card headers */
@media (max-width: 900px) {
  .page {
    padding-top: max(112px, calc(env(safe-area-inset-top, 0px) + 94px));
  }
}

@media (max-width: 520px) {
  .page {
    min-height: 100svh;
    justify-content: flex-start;
    gap: 12px;
    /* More buttons + wrapping on small screens when logged in */
    padding: max(128px, calc(env(safe-area-inset-top, 0px) + 108px)) 14px 24px;
  }

  .topActions--top {
    top: max(6px, env(safe-area-inset-top, 0px));
    justify-content: center;
    padding: 6px 10px 10px;
    gap: 8px;
    row-gap: 8px;
  }

  .smallButton {
    font-size: 11px;
    padding: 8px 10px;
  }

  .topActions {
    margin-bottom: 14px;
  }

  .brand {
    margin-top: 6px;
  }

  .card {
    padding: 18px;
  }

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

  .infoBtn {
    width: 22px;
    height: 22px;
    font-size: 12px;
    margin-left: 8px;
  }
}

/* Admin single booking view — fit narrow screens, wrap long emails/addresses */
body.adminBookingView {
  overflow-x: hidden;
}

.adminBookingView__main.page {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 100svh;
  justify-content: flex-start;
  align-items: stretch;
}

.adminBookingView__card.card {
  max-width: min(720px, 100%);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.adminBookingView__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.adminBookingView__actions .smallButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  box-sizing: border-box;
}

.adminBookingView__title.label {
  font-size: clamp(16px, 4.2vw, 18px);
  margin-bottom: 12px;
  line-height: 1.25;
  max-width: 100%;
}

.adminBookingView__panel {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.06);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.adminBookingView .label {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.adminBookingView__list {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.55;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.adminBookingView__list li {
  margin-bottom: 0.35em;
}

.adminBookingView__note {
  padding: 12px;
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.85);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.adminBookingView__note--customer {
  background: rgba(255, 212, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.adminBookingView__note--internal {
  background: rgba(220, 230, 255, 0.65);
  border: 1px solid rgba(30, 60, 140, 0.25);
  color: rgba(0, 0, 0, 0.88);
  font-size: 14px;
}

/* Admin dashboard: bookings list — table on desktop; stacked labelled cards on narrow screens */
.adminDashboardBookingsWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.adminDashboardBookingsTable__paymentForm {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.adminDashboardBookingsTable__paymentSelect {
  max-width: 170px;
  min-width: 0;
}

@media (max-width: 960px) {
  .adminDashboardBody {
    overflow-x: hidden;
  }

  .adminDashboardBookingsWrap {
    overflow-x: visible;
  }

  .adminDashboardBookingsTable {
    display: block;
    width: 100%;
  }

  .adminDashboardBookingsTable thead {
    display: none;
  }

  .adminDashboardBookingsTable tbody {
    display: block;
  }

  .adminDashboardBookingsTable tbody tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    overflow: hidden;
  }

  .adminDashboardBookingsTable tbody tr.adminBookingRow--cleanerAwaitingAdmin {
    border: 1px solid rgba(22, 163, 74, 0.45);
    border-left: 4px solid #16a34a;
    box-shadow: 0 0 18px rgba(22, 163, 74, 0.22);
  }

  .adminDashboardBookingsTable tbody tr.adminBookingRow--cleanerAwaitingAdmin td:first-child {
    border-left: none;
    box-shadow: none;
  }

  .adminDashboardBookingsTable tbody tr.adminBookingRow--cleanerAwaitingAdmin td {
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .adminDashboardBookingsTable tbody tr.adminBookingRow--cleanerAwaitingAdmin td:last-child {
    border-right: none;
  }

  .adminDashboardBookingsTable tbody td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .adminDashboardBookingsTable tbody td:last-child {
    border-bottom: none;
  }

  .adminDashboardBookingsTable tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.48);
    margin-bottom: 8px;
  }

  .adminDashboardBookingsTable__colCleaner {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .adminDashboardBookingsTable__notesPreview {
    max-width: none !important;
  }

  .adminDashboardBookingsTable__viewLink {
    display: flex !important;
    justify-content: center;
    text-align: center;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
  }

  .adminDashboardBookingsTable__paymentForm {
    flex-direction: column;
    align-items: stretch;
  }

  .adminDashboardBookingsTable__paymentSelect {
    max-width: none;
    width: 100%;
  }

  .adminDashboardBookingsTable__paymentSubmit {
    width: 100%;
  }

  .adminDashboardBookingsTable__assignForm .smallButton {
    align-self: stretch;
    width: 100%;
  }

  .adminDashboardBookingsTable tbody td[data-label="Cleaner"] .smallButton {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .adminDashboardBookingsTable tbody td[data-label="Media"] .smallButton {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .adminDashboardBookingsTable tbody td[data-label="Media"] form {
    display: block;
  }

  .adminDashboardBookingsTable tbody td[data-label="Confirmation"] form .smallButton {
    width: 100%;
    box-sizing: border-box;
  }

  .adminDashboardPage__card.card {
    padding: 12px 10px 16px;
  }
}

/* Cleaner column + assign form: only when table layout is active (wide screens) */
@media (min-width: 961px) {
  .adminDashboardBookingsTable__colCleaner {
    min-width: 300px;
    max-width: 460px;
    width: 26%;
    vertical-align: top;
  }

  .adminDashboardBookingsTable__assignForm {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .adminDashboardBookingsTable__assignForm .smallButton {
    align-self: flex-start;
  }

  .adminDashboardBookingsTable__cleanerSelect {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.adminDashboardBookingsTable__cleanerHint {
  max-width: none;
}

@media (min-width: 1100px) {
  .adminDashboardBookingsTable__colCleaner {
    min-width: 340px;
    max-width: 520px;
  }

  .adminDashboardBookingsTable__assignForm {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .adminDashboardBookingsTable__cleanerSelect {
    width: auto;
    min-width: 200px;
    max-width: min(320px, 100%);
  }
}

/* Admin dashboard list: cleaner marked clean done — office review / Mark completed */
.adminDashboardBookingsTable tr.adminBookingRow--cleanerAwaitingAdmin td:first-child {
  border-left: 4px solid #16a34a;
  box-shadow: -4px 0 18px rgba(22, 163, 74, 0.42);
}

.adminDashboardBookingsTable tr.adminBookingRow--cleanerAwaitingAdmin td {
  border-top: 1px solid rgba(22, 163, 74, 0.22);
  border-bottom: 1px solid rgba(22, 163, 74, 0.18);
}

.adminDashboardBookingsTable tr.adminBookingRow--cleanerAwaitingAdmin td:last-child {
  border-right: 1px solid rgba(22, 163, 74, 0.2);
}

@media (max-width: 520px) {
  .adminBookingView__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .adminBookingView__actions .smallButton {
    display: block;
    width: 100%;
    flex: none;
    box-sizing: border-box;
  }

  .adminBookingView__panel {
    padding: 12px;
  }

  .adminBookingView__card.card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .layer {
    transform: none !important;
  }
}

