#helpButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #008000;
  color: white;
  border-radius: 12px; /* Rounded corners */
  border: 1px solid white; /* White border */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  z-index: 1000; /* Ensure the button is on top */
}

#helpButton i {
  margin-left: 5px; /* Space between text and icon */
}

#helpButton:hover {
  background-color: #0d3a61;
  transform: scale(1.05);
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  #helpButton {
    font-size: 12px;
    padding: 5px 10px;
  }
}