/* =========================================================
   EXPO ONE DEHRADUN - PREMIUM GLASSMORPHISM THEME STYLESHEET
   ========================================================= */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Glassmorphism Background Card */
.glass-panel {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(51, 65, 85, 0.6);
}

/* STALL SPOT STYLING ON MAP CANVAS */
.stall-spot {
  position: absolute;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease-in-out;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.stall-spot:hover {
  transform: scale(1.12);
  z-index: 40;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

/* Admin Dragging Active State */
.admin-draggable {
  cursor: grab !important;
}
.admin-draggable:active {
  cursor: grabbing !important;
  z-index: 60 !important;
  transform: scale(1.18) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.85) !important;
}

/* STATUS COLORS */
.status-available {
  background-color: rgba(16, 185, 129, 0.88);
  color: #ffffff;
  border: 2px solid #059669;
}
.status-selected {
  background-color: rgba(245, 158, 11, 0.95);
  color: #ffffff;
  border: 2px solid #FBBF24;
  animation: pulse-border 1.2s infinite;
  z-index: 50;
}
.status-booked {
  background-color: rgba(239, 68, 68, 0.85);
  color: #ffffff;
  border: 2px solid #DC2626;
  cursor: not-allowed !important;
}
.status-vip {
  background-color: rgba(139, 92, 246, 0.88);
  color: #ffffff;
  border: 2px solid #7C3AED;
}

/* ANIMATIONS */
@keyframes pulse-border {
  0%, 100% {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 4px rgba(245, 158, 11, 0.4);
  }
}

.admin-crosshair {
  cursor: crosshair;
}
