
/* ===== SUCCESS TOAST (NEW) ===== */
.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a3cff;
  color: white;
  padding: 20px 40px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(26, 60, 255, 0.4);
  z-index: 10000000 !important;  /* Highest of all */
  text-align: center;
  animation: successPop 0.3s ease;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  min-width: 300px;
}

.success-toast.hidden {
  display: none !important;
}

.success-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.success-icon {
  font-size: 28px;
}

.success-text {
  letter-spacing: 0.5px;
}

@keyframes successPop {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}



