body {
  min-height: 100vh;
}

/* Step 1 hero: optional subtle lift (Tailwind handles most styling in JS templates) */
.booking-step1-hero {
  isolation: isolate;
}

.step-pill {
  transition: all 150ms ease;
}

.step-pill.active {
  background: #0f172a;
  color: #ffffff;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #ffffff;
}

.card-elevate {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.card-elevate:hover {
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06), 0 8px 32px rgba(15, 23, 42, 0.08);
}

.booking-summary-aside {
  position: relative;
}

@media (min-width: 1024px) {
  .booking-summary-aside {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
  background-size: 400% 100%;
  animation: shimmer 1.2s ease infinite;
  border-radius: 0.5rem;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.admin-nav-item {
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover {
  background: rgba(241, 245, 249, 0.9);
  color: #0f172a;
}

.admin-nav-item.active {
  background: rgba(238, 242, 255, 0.95);
  color: #312e81;
  font-weight: 600;
  border-left-color: #4f46e5;
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.admin-nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  opacity: 0.88;
}

.admin-nav-item.active .admin-nav-icon {
  opacity: 1;
  color: #4f46e5;
}

.admin-sidebar {
  box-shadow: 1px 0 0 rgba(15, 23, 42, 0.04), 4px 0 24px rgba(15, 23, 42, 0.04);
}

.admin-header {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
