/* Critical button fixes
   Originally added to force the property booking "Reserve" button visible
   (see SimpleAirbnbBooking.tsx, which also injects #reserve-button-custom
   styles). Scoped to that button only — the old button[type="button"]
   selector broke absolutely-positioned icon buttons and tab rows app-wide. */
.reserve-button,
#reserve-button-custom,
.w-full.mb-4 {
  display: block !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 999 !important;
  pointer-events: auto !important;
}

.info-window-view-button,
a[to^="/stays/"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 999 !important;
  pointer-events: auto !important;
  min-width: 55px !important;
  text-align: center !important;
}

.booking-card, 
.border.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
}