.btn-link {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 14px;
  padding: 8px 12px;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--accent-color);
}

.btn-primary-small {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary-small:hover {
  background: #FFC107;
  transform: translateY(-1px);
}

button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

button.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
