/* Custom Toast Notification System */
.custom-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none; /* Allows clicking through the container */
}

.custom-toast {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 500;
  min-width: 250px;
  pointer-events: auto; /* Re-enable pointer events for the toast itself */
  font-family: 'Outfit', sans-serif; /* Fallback to standard if needed */
}

.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast i {
  font-size: 1.25rem;
}

/* Toast Types */
.custom-toast.error {
  background: rgba(220, 53, 69, 0.85); /* Bootstrap danger */
  box-shadow: 0 10px 25px -5px rgba(220, 53, 69, 0.4);
}

.custom-toast.success {
  background: rgba(40, 167, 69, 0.85); /* Bootstrap success */
  box-shadow: 0 10px 25px -5px rgba(40, 167, 69, 0.4);
}

.custom-toast.warning {
  background: rgba(255, 193, 7, 0.85); /* Bootstrap warning */
  color: #333;
  box-shadow: 0 10px 25px -5px rgba(255, 193, 7, 0.4);
}

.custom-toast.info {
  background: rgba(23, 162, 184, 0.85); /* Bootstrap info */
  box-shadow: 0 10px 25px -5px rgba(23, 162, 184, 0.4);
}
