/* interact-button class styles */
.interact-button {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.interact-button:hover {
  opacity: 0.8;
}

.interact-button:active {
  transform: scale(0.98);
}

.interact-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
