/* Button styling */
#getCallButton {
  position: absolute;
  right: 6px;
  top: 5px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 2px;
  padding: 6px 9px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  font-family: Helvetica, sans-serif;
  animation: colorChange 2s infinite;
}

/* Hover effect */
#getCallButton:hover {
  background-color: #0056b3;
}

/* Animation for color changing */
@keyframes colorChange {
  0% {
    background-color: #007bff;
  }
  25% {
    background-color: #28a745;
  }
  50% {
    background-color: #ffc107;
  }
  75% {
    background-color: #dc3545;
  }
  100% {
    background-color: #007bff;
  }
}
