/* Toast container glassmorphism */
.swal2-popup.swal2-toast {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Custom confirm button style */
.swal2-confirm {
  background: black !important;
  color: white !important;
  border: 1px solid white !important;
  transition: 0.3s ease;
}

.swal2-confirm:hover {
  background: white !important;
  color: black !important;
}

