/* Additional button variants beyond the base .btn styles in css/global.css */

.btn-block {
  width: 100%;
}

.btn-group {
  display: inline-flex;
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.btn-group .btn {
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--border-color-strong);
  background: var(--bg-surface);
  color: var(--text-secondary);
}

.btn-group .btn:last-child {
  border-right: none;
}

.btn-group .btn.active {
  background: var(--brand-gradient);
  color: #fff;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-tag);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

.filter-chip button {
  display: flex;
  color: var(--text-tertiary);
}

.filter-chip button:hover {
  color: var(--color-danger);
}
