#filters-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  height: var(--header-height);
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(14, 14, 20, 0.99) 0%, rgba(12, 12, 18, 0.97) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(130, 21, 44, 0.10);
  z-index: var(--z-header);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(0, 0, 0, 0.15);
}

.uh-tabs {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
}

.uh-divider {
  width: 1px;
  height: 22px;
  background: rgba(65, 65, 75, 0.3);
  flex-shrink: 0;
  margin: 0 4px;
}

.uh-spacer {
  flex: 1;
}

.uh-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header-spacer {
  flex: 1;
}

.header-spacer-row2 { flex: 1; }

.filter-panel-toggle-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 6px; cursor: pointer;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px;
  background: rgba(36, 36, 44, 0.5); border: 1px solid rgba(65, 65, 75, 0.4);
  color: var(--color-text-muted); transition: all 0.25s ease; white-space: nowrap;
  text-transform: uppercase;
}
.filter-panel-toggle-btn:hover {
  background: rgba(130, 21, 44, 0.15); border-color: rgba(130, 21, 44, 0.4); color: var(--color-text-heading);
  box-shadow: 0 0 8px rgba(130, 21, 44, 0.1);
}

.branding {
  display: flex;
  align-items: center;
  gap: 8px;
}

.alpha-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a44a;
  background: rgba(201, 164, 74, 0.12);
  border: 1px solid rgba(201, 164, 74, 0.3);
  border-radius: 10px;
  line-height: 1.4;
  white-space: nowrap;
}

.filter-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 16px; height: 16px; border-radius: 8px;
  background: var(--color-brand-red); color: #fff; font-size: 0.625rem; font-weight: 700;
  padding: 0 4px;
}


