/* Sidebar sections */
#filters-placeholder .sidebar-section {
  margin-bottom: 1.5rem;
}

/* Filter buttons */
#filters-placeholder .filter-link {
  display: block;
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  background: #121212;       /* black background */
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 0.3rem;
  font-size: 0.85rem;
  color: #f0f0f0;            /* light text */
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover effect */
#filters-placeholder .filter-link:hover {
  background-color: #2a2a2a; /* dark grey hover */
  color: #ffcc00;            /* orange text */
}

/* Active filter state */
#filters-placeholder .filter-link.active {
  background-color: #ffcc00; /* orange highlight */
  color: #121212;            /* black text for contrast */
  font-weight: bold;
}
