/* Environment Indicator Bar */
.env-indicator {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 9999;
  pointer-events: none;
}

.env-indicator.env-dev {
  background-color: #f59e0b; /* Amber-500 */
}

.env-indicator.env-staging {
  background-color: #a855f7; /* Purple-500 */
}

.env-indicator-label {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 10px;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  opacity: 0.75;
  letter-spacing: 0.05em;
}
