/* BeachBook – global styles */

[x-cloak] { display: none !important; }

/* Smooth page transitions */
* { -webkit-tap-highlight-color: transparent; }

/* Booking.com card style */
.card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* Accent color for Tailwind */
.bg-accent { background-color: #febb02; }
.text-accent { color: #febb02; }
.border-accent { border-color: #febb02; }

/* PWA safe areas */
body { padding-bottom: env(safe-area-inset-bottom); }

/* Loading spinner */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid rgba(0,53,128,.15);
  border-top-color: #003580;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Touch-friendly buttons */
button, a[role="button"] { touch-action: manipulation; }
