/* throbbing button css */
/* .throbbing-button {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  animation: throbbing 1s infinite;
}

@keyframes throbbing {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.throbbing-button:hover {
  animation: none; /* Stop throbbing on hover */
/* }  */

