/* buttons.css

/* === Button Base === */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 48px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #333;
  border-radius: 12px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  min-width: 0;
}

.btn-label {
  position: relative;
  z-index: 2;
}

/* === Hover Styles by Type === */
.buy-btn:hover,
.hold-btn:hover {
  background-color: #e0ffe0;
  border-color: #2d7f2d;
}

.sell-btn:hover,
.skip-btn:hover {
  background-color: #ffeaea;
  border-color: #b63d3d;
}

/* === Cooldown & Animation States === */
.btn.cooling-down {
  pointer-events: none;
  opacity: 0.6;
}

.btn.bounce-finish {
  animation: buttonBounce 0.5s ease;
}
