#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .toast {
    opacity: 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    color: white;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    transform: translateY(-20px);
  }
  
  /* Show animation */
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Type styles */
  .toast.info {
    background-color: var(--primary); /* Blue */
  }
  
  .toast.success {
    background-color: #10B981; /* Green */
  }
  
  .toast.error {
    background-color: #EF4444; /* Red */
  }
  
  .toast.warning {
    background-color: #F59E0B; /* Yellow */
  }
  