/**
 * xnticketclean — portal toast for caps normalize + sensitive-share hint.
 * Navy default (hx tone), green for the sensitive variant. No purple/glow.
 */
.xntc-toast {
  position: fixed;
  z-index: 10050;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(440px, calc(100vw - 32px));
  padding: 12px 14px 12px 16px;
  border-radius: 10px;
  background: #0d2f56;
  color: #fff;
  font-size: 13.5px;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(16, 26, 40, 0.18);
  animation: xntc-toast-in 0.18s ease-out;
}

@keyframes xntc-toast-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.xntc-toast-text {
  flex: 1 1 auto;
}

.xntc-toast-cta {
  flex: 0 0 auto;
  color: #9fd0ff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.xntc-toast-cta:hover,
.xntc-toast-cta:focus {
  color: #c3e3ff;
  text-decoration: underline;
}

.xntc-toast-close {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.xntc-toast-close:hover,
.xntc-toast-close:focus {
  color: #fff;
}

.xntc-toast--sensitive {
  background: #2a7549;
}

@media (max-width: 480px) {
  .xntc-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: none;
    max-width: none;
  }
}
