/**
 * Buttons Component
 * 
 * Styles for UI buttons and action buttons used throughout the application.
 * Dependencies: variables.css
 */

/* === UI Buttons === */
.ui-btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--font-size-sm);
  padding: var(--spacing-lg) var(--spacing-xxl);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: var(--background);
  color: var(--text-color-button);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.ui-btn:hover {
  filter: brightness(0.95);
}

/* === Action Buttons === */
.action-btn {
  border: 1px solid var(--border-color);
  background: var(--background-light);
  width: var(--action-btn-width);
  height: var(--action-btn-height);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
  -webkit-user-select: none;
  user-select: none;
}

.action-btn:hover {
  filter: brightness(0.98);
  background: var(--background-lighter);
}

