/* [project]/components/DeployVersionWatcher.css [app-client] (css) */
.hn-deploy-toast {
  z-index: 600;
  background: var(--surface-2, #162132);
  border: 1px solid var(--accent);
  max-width: min(28rem, 100vw - 1.5rem);
  box-shadow: 0 12px 32px #00000073,
    inset 0 1px 0 color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--text-primary, #e8eef8);
  border-radius: 14px;
  align-items: center;
  gap: clamp(.5rem, 1vw, .85rem);
  padding: clamp(.6rem, .5rem + .4vw, .85rem) clamp(.85rem, .6rem + .6vw, 1.1rem);
  font-size: clamp(.85rem, .8rem + .2vw, .95rem);
  line-height: 1.35;
  animation: .22s cubic-bezier(.16, 1, .3, 1) hn-deploy-toast-slide-in;
  display: flex;
  position: fixed;
  bottom: clamp(.75rem, 2vw, 1.5rem);
  right: clamp(.75rem, 2vw, 1.5rem);
}

.hn-deploy-toast__title {
  color: var(--text-primary, #e8eef8);
  flex: auto;
  font-weight: 500;
}

.hn-deploy-toast__actions {
  flex: none;
  align-items: center;
  gap: .4rem;
  display: inline-flex;
}

.hn-deploy-toast__btn {
  appearance: none;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  min-height: 2.25rem;
  padding: 0 .85rem;
  font-size: .85rem;
  font-weight: 600;
  transition: background .12s, color .12s, border-color .12s, filter .12s;
}

.hn-deploy-toast__btn--primary {
  background: var(--accent);
  color: var(--accent-ink, #fff);
  border: 1px solid var(--accent);
}

.hn-deploy-toast__btn--primary:hover {
  filter: brightness(1.08);
}

.hn-deploy-toast__btn--ghost {
  color: var(--text-secondary, #a9b6cf);
  border: 1px solid var(--surface-4, #3b567a);
  background: none;
  min-width: 2.25rem;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.hn-deploy-toast__btn--ghost:hover {
  color: var(--text-primary, #e8eef8);
  border-color: var(--accent);
}

.hn-deploy-toast__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes hn-deploy-toast-slide-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hn-deploy-toast {
    text-align: center;
    flex-direction: column;
    align-items: stretch;
    left: clamp(.5rem, 2vw, 1rem);
    right: clamp(.5rem, 2vw, 1rem);
  }

  .hn-deploy-toast__actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hn-deploy-toast {
    animation: none;
  }

  .hn-deploy-toast__btn {
    transition: none;
  }
}

/*# sourceMappingURL=09x7z4xwcsqf9.css.map*/