:root {
  --token-78eeacc2-39fb-42a2-b86e-ada9a7280cc8: rgb(240, 117, 240);
  --token-5bea8c16-3ef6-485f-8e0c-8c753934ef7a: rgba(240, 117, 240, 0.15);
  --token-deada280-32e4-4ae5-a7ea-4a074f5ee96a: rgb(0, 212, 255);
  --token-b3d8f1a2-4c5e-4f6a-8b9d-0e1f2a3b4c5d: rgba(0, 212, 255, 0.18);
}

.ssg-toast {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99999;
  transform: translateX(-50%) translateY(-100%);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "google-sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #2869e7;
  box-shadow: 0 8px 32px rgba(0, 57, 99, 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.ssg-toast--visible {
  transform: translateX(-50%) translateY(24px);
  opacity: 1;
  pointer-events: auto;
}
