/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* SIDEBAR BASE */
.sidebar {
  color: #000;
}

/* FORCE LEFT ALIGN EVERYTHING */
.sidebar * {
  text-align: left;
}

/* EACH TAG ROW */
.sidebar label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  color: #000;
}

/* TAG COUNT STYLE */
.count {
  font-size: 12px;
  opacity: 0.6;
  color: #000;
  margin-left: auto;
}

/* OPTIONAL: clean spacing inside dropdowns */
.filters details {
  margin-bottom: 10px;
}
