/* Button Styles */

button,
[role="button"] {
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover,
[role="button"]:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

button:active,
[role="button"]:active {
  transform: translateY(0);
}

button:disabled,
[role="button"]:disabled {
  background: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.secondary-btn:hover {
  background: rgba(220, 53, 69, 0.1);
}

.btn-small {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
}

