/**
 * Sticky “Need help?” — one tap to help.html on post-booking / manage flows only
 * (confirmation, my-bookings, booking-qr, cancel-booking, booking-messages).
 * Load after css/shared-tokens.css (uses --color-* tokens).
 */
body {
  padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
}

.guest-help-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--color-brand, #1a3a8f);
  color: #fff;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(26, 58, 143, 0.18);
  -webkit-tap-highlight-color: transparent;
}

.guest-help-footer:hover,
.guest-help-footer:focus-visible {
  background: var(--color-brand-strong, #0f2460);
  color: #fff;
  outline: none;
}

.guest-help-footer:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -4px;
}
