/* Custom CSS */

/* Staging Badge Style */
#staging-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(249, 115, 22, 0.15); /* Sleek neon orange with transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #ffedd5;
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  pointer-events: none; /* Make it non-intrusive */
  transition: opacity 0.3s ease;
}

/* Pulse animation for the indicator dot */
.staging-pulse {
  width: 8px;
  height: 8px;
  background-color: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  animation: staging-pulse-animation 2s infinite;
}

@keyframes staging-pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}