@import "./_ds_bundle.css";

/* C/D logo mark in the navbar */
.ds-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.ds-nav__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: block;
}

/* Toast shown when a connect click copies the email address */
.ds-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 12px);
  background: var(--color-surface-raised);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-soft), var(--glow-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
  z-index: 2000;
  max-width: 90vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ds-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
