/* Custom overrides layered on top of Tailwind. */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Toast notifications (title save errors, copy-link confirmation, etc.) */
.nomeet-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 12px);
  background: #1C3988;
  color: #fff;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}
.nomeet-toast--error {
  background: #C0392B;
}
.nomeet-toast--visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Social share dock buttons on the video page */
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.share-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.share-btn:focus-visible {
  outline: 2px solid #488BFD;
  outline-offset: 2px;
}
