/* toast.css */
.toast {
    min-width: 200px;
    max-width: 300px;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: white;
    animation: fadeIn 0.3s ease, fadeOut 0.5s ease 2.5s forwards;
    opacity: 1;
    z-index: 99999999;
  }
  
  .toast-success { background-color: #16a34a; }
  .toast-error { background-color: #dc2626; }
  .toast-info { background-color: #2563eb; }
  
  #toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeOut {
    to { opacity: 0; transform: translateY(-10px); }
  }
  