/* Bootstrap Toast Container Styling */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* Custom toast styling to ensure proper display */
.toast {
  min-width: 300px;
  max-width: 400px;
  margin-bottom: 10px;
}

/* Ensure toasts are visible on mobile */
@media only screen and (max-width: 596px) {
  .toast-container {
    right: 10px;
    left: 10px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}

@media only screen and (max-width: 350px) {
  .toast-container {
    right: 5px;
    left: 5px;
  }
}