/* Toaster container - where all toast messages will appear */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Base styling for each toast */
  .toast {
    min-width: 250px;
    padding: 15px 20px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    animation: fadein 0.5s forwards, fadeout 0.5s 3.5s forwards;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
  }
  
  /* Glass style for success toast */
  .toast-success {
    background: rgba(40, 167, 69, 0.38);
    border: 1px solid rgba(40, 167, 69, 0.3);
  }
  
  /* Glass style for error toast */
  .toast-error {
    background: rgba(220, 53, 69, 0.38);
    border: 1px solid rgba(220, 53, 69, 0.3);
  }
  
  /* Glass style for info toast */
  .toast-info {
    background: rgba(23, 162, 184, 0.38);
    border: 1px solid rgba(23, 162, 184, 0.3);
  }
  
  /* Glass style for warning toast */
  .toast-warning {
    background: rgba(255, 193, 7, 0.38);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #333;
  }
  
  /* Fade-in and fade-out animations */
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeout {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  