/* Reusable theme helper classes extracted from theme-variables.css.
 * Uses existing CSS custom properties (theme tokens) like --primary-color,
 * --button-primary-bg, etc.
 *
 * As we refactor, copy or move standalone utility classes here
 * instead of keeping them only inside theme-variables.css.
 */

/* Reusable block-level button variants using palette colors */

.block-button-success {
  background-color: var(--success-color, #198754);
  border-color: var(--success-color, #198754);
}

.block-button-danger {
  background-color: var(--danger-color, #dc3545);
  border-color: var(--danger-color, #dc3545);
}

.block-button-warning {
  background-color: var(--warning-color, #ffc107);
  border-color: var(--warning-color, #ffc107);
}

.main-menu__sidebar {
  background-color: var(--sidebar-bg-color, #343a40);
}

.brand-name,
.nav-title
{
  font-weight: var(--header-font-weight);
  font-family: var(--header-font-family);
}
