/* Toast container styling */
.Toastify__toast {
    background-color: white !important; /* White background */
    color: black !important; /* Black text */
    max-width: 300px !important; /* Limit width */
  }
  
  /* Toast progress bar styling */
  .Toastify__progress-bar {
    background-color: #007bff !important; /* Blue progress bar */
  }
  
  /* Responsive Design: Ensure it doesn't take up the whole screen on mobile */
  @media (max-width: 600px) {
    .Toastify__toast {
      width: 80% !important;
    }
  }
  