.slot.booking-scroll-highlight {
  outline: 4px solid #22c55e;
  outline-offset: 4px;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, .18), 0 16px 36px rgba(34, 197, 94, .22);
  animation: booking-scroll-pulse 1.15s ease-in-out 2;
}

.slot.booking-scroll-highlight .slot-status::after {
  content: " · Tu reserva";
  font-weight: 900;
}

@keyframes booking-scroll-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}

@media (prefers-color-scheme: dark) {
  .slot.booking-scroll-highlight {
    outline-color: #86efac;
    box-shadow: 0 0 0 8px rgba(134, 239, 172, .18), 0 16px 36px rgba(0, 0, 0, .30);
  }
}
