  /* ============================================
   Toast Alert
   ============================================ */
#toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  max-width: 320px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  transform: translateX(400px);
  opacity: 0;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.toast.show {
  animation: slideInToast 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.toast.hide {
  animation: slideOutToast 0.3s ease forwards;
}

.toast.success {
  background: linear-gradient(135deg, #10b981, #059669);
  border-left: 3px solid #047857;
}

.toast.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-left: 3px solid #b91c1c;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.toast-content i {
  font-size: 18px;
  opacity: 0.95;
}

.toast-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  transition: all 0.2s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: #fff;
  transform: scale(1.1);
}

@keyframes slideInToast {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutToast {
  from {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px) translateY(-20px);
    opacity: 0;
  }
}
  /* ============================================
   Toast Alert Responsive
   ============================================ */
  @media (max-width: 768px) {
  #toast-container {
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: auto;
    width: 100%;
  }
}