/* Version Switcher Banner */
.version-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 200;
  flex-wrap: wrap;
}

.version-banner--accessible {
  background: #0d3320;
  border-bottom: 2px solid #00b894;
  color: #a3f5d6;
}

.version-banner--inaccessible {
  background: #3d1515;
  border-bottom: 2px solid #ff6b6b;
  color: #ffa8a8;
}

.version-banner-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.version-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.version-banner--accessible .version-banner-dot {
  background: #00b894;
  box-shadow: 0 0 6px #00b894;
}

.version-banner--inaccessible .version-banner-dot {
  background: #ff6b6b;
  box-shadow: 0 0 6px #ff6b6b;
}

.version-banner a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 150ms ease;
}

.version-banner a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.version-banner a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
