.toast-container {
    position: fixed;
    bottom: 20px; /* 20px from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center alignment */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center each toast */
    -webkit-font-smoothing: antialiased;
    font-family: "Montserrat";
  }
  
  .toast {
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    max-width: 800px; /* Adjust max width */
    width: calc(100% - 40px); /* Responsive width */
    font-size: 14px; /* Increased font size for better readability */
    -webkit-font-smoothing: antialiased;
  }
  
  .toast.success {
    background-color: #3d3d3d; /* Dark background color */
    color: #b6c0cc; /* White text color */
    border: none; /* No border for success message */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow */
  }
  
  .toast.success::before {
    content: '✔'; /* Checkmark symbol */
    margin-right: 10px; /* Space between icon and text */
    font-size: 14px; /* Increase size of the checkmark */
  }
  
  .toast.error {
    background-color: #f56868; /* Specific color for error */
    color: #ffffff;
    border-color: #f5c6cb;
  }

  /* .toast.error::before {
    content: '✖';
    margin-right: 10px; 
    font-size: 18px; 
  } */

  .toast button {
    background: none;
    border: none;
    color: #ffffff; /* Match the text color */
    cursor: pointer;
    margin-left: auto;
    padding-left: 10px;
    font-size: 14px;
    display: none; /* Hide close button for success message */
  }
  
  .toast button:hover {
    text-decoration: underline; /* Add underline on hover */
  }
  