/**
 * Styling for category radio buttons to display like clickable pills.
 */
/* .category-radio-pills-wrapper {
  margin: 1em 0;
} */

/* .category-radio-pills-wrapper .form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
} */

/* Hide the actual radio inputs */
/* .category-radio-pills-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
} */

/* Style for the Radio__label class */
/* .category-radio-pills-wrapper .Radio__label {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 2em;
  background-color: #f0f0f0;
  color: #333;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  text-align: center;
  user-select: none;
} */

/* Hover state */
/* .category-radio-pills-wrapper .Radio__label:hover {
  background-color: #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

/* Active/selected state */
/* .category-radio-pills-wrapper .Radio__label.active {
  background-color: #0078d4;
  color: white;
  border-color: #0078d4;
  font-weight: 500;
} */

/* Focus state for accessibility */
/* .category-radio-pills-wrapper input[type="radio"]:focus + .Radio__label {
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.5);
  outline: none;
}  */
