#elhelw-seat-map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0f172a;
  padding: 24px;
  border-radius: 12px;
  color: white;
  font-family: 'Segoe UI', Roboto, sans-serif;
}
.elhelw-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
}
.legend-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
#elhelw-seat-map {
  position: relative;
  width: min(600px, 92vw);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  border: 2px solid #334155;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0,0,0,0.28);
  overflow: hidden;
}
.stage {
  position: absolute;
  width: 23%;
  height: 23%;
  min-width: 90px;
  min-height: 90px;
  background: #ef4444;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.35);
  z-index: 1;
  pointer-events: none;
  color: #fff;
}
.seat {
  position: absolute;
  width: calc(min(36px, 6.5%));
  height: calc(min(36px, 6.5%));
  font-size: calc(min(11px, 1.6%));
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  border: 2px solid transparent;
  z-index: 5;
  box-sizing: border-box;
  line-height: 1;
  outline: none;
}
.seat.available {
  background: rgba(255,255,255,0.03);
  border-color: #3b82f6;
  color: #3b82f6;
  box-shadow: 0 4px 10px rgba(59,130,246,0.06);
}
.seat.available:hover,
.seat.available:focus {
  background: #3b82f6;
  color: #fff;
  transform: translate(-50%,-50%) scale(1.12);
  box-shadow: 0 10px 26px rgba(59,130,246,0.16);
}
.seat.selected {
  background: linear-gradient(180deg,#16a34a,#22c55e);
  border-color: #86efac;
  color: #07203a;
  transform: translate(-50%,-50%) scale(1.16);
  box-shadow: 0 10px 26px rgba(34,197,94,0.14);
}
.seat.reserved,
.seat.held {
  background: #334155;
  border-color: #475569;
  color: #64748b;
  cursor: not-allowed;
  opacity: 0.85;
  transform: translate(-50%,-50%) scale(1);
}
#selected-count {
  margin-top: 10px;
  font-weight: 700;
  color: #e6eef8;
}
#booking-msg {
  margin-top: 18px;
  min-height: 80px;
  width: 100%;
  max-width: 640px;
  text-align: center;
}
.booking-form {
  background: linear-gradient(180deg,#0b1220,#071428);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 12px;
  border-radius: 10px;
  color: #e6eef8;
}
.elhelw-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: rgba(7,32,58,0.95);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.6);
  z-index: 9999;
}
@media (max-width: 480px) {
  .elhelw-legend { gap: 12px; padding: 8px 12px; margin-bottom: 14px; }
  .legend-item { font-size: 12px; }
  .stage { width: 28%; height: 28%; min-width: 72px; min-height: 72px; font-size: 0.95rem; }
  .seat { width: calc(min(32px, 8.5%)); height: calc(min(32px, 8.5%)); font-size: 10px; }
  #elhelw-seat-map-wrapper { padding: 16px; }
}
