.toast-message {
  background-color: #4CAF50;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease-in-out;
  font-size: 14px;
    z-index: 900;
	max-height: 500px;
    overflow-y: auto;

}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}


.toast-message span:last-child {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toast-message:hover span:last-child {
  visibility: visible;
  opacity: 1;
}


.toast-close {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toast-message:hover .toast-close {
  visibility: visible;
  opacity: 1;
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px; /* spacing between toasts */
}