/* Booking screen styles */

.screen.booking {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  width: 100%;
  height: 100%;
}

.booking-swipe-zone {
  flex: 0 0 14%;
  min-width: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  box-sizing: border-box;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 100%
  );
}

.booking-home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.booking-home-btn:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

.booking-home-btn:active {
  transform: scale(0.97);
}

.booking-home-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.booking-home-icon {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.95;
}

.booking-frame {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
}

