.floating-alert {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #4AA095;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: none;
  font-family: 'Work Sans', sans-serif;
}


.hidden {
  opacity: 0;
}

@media (max-width: 768px) {
  .floating-alert {
    bottom: 4px;
    left: 8px;
    padding: 8px;
    font-size: 14px;
    max-width: 70%; /* Set max width to 70% */
    white-space: normal; /* Ensure text wraps inside the container */
    word-wrap: break-word; /* Break long words to fit the container */
	line-height: 1.4;
  }
}

