.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-muted {
  color: var(--color-muted);
}

.u-glow {
  filter: drop-shadow(0 0 16px rgba(124, 255, 74, 0.48));
}

.ri-spin {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(124, 255, 74, 0.35);
  border-radius: var(--radius-md);
  background: rgba(10, 14, 11, 0.94);
  color: var(--color-text);
  box-shadow: var(--shadow-panel);
}
