/* Bootstrap theme overrides mapped to our CSS variables */

.text-muted {
  color: var(--text-tertiary) !important;
}

.text-primary {
  color: var(--accent-primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-danger {
  color: var(--error) !important;
}

.bg-light {
  background: var(--bg-tertiary) !important;
}

.bg-white {
  background: var(--bg-surface) !important;
}

.border {
  border-color: var(--border-primary) !important;
}

.text-cyan {
  color: var(--accent-cyan) !important;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.text-xs {
  font-size: 0.75rem;
}

.text-xxs {
  font-size: 0.7rem;
}

