.category-view-colors {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-top: 12px;
}

.category-colors-text {
  color: #555;
  font-size: 13px;
  display: none;
}

.category-color-outer {
  /* padding: 2px; */
  border-radius: 100%;
  border: 1px solid #ccc;
}

.category-color-outer:hover {
  cursor: pointer;
  border: 1px solid #000;
}

.category-color {
  width: 11px;
  height: 11px;
  border-radius: 100%;
}

.color-wheel-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.color-wheel {
  width: 11px;
  height: 11px;
}

@media screen and (max-width: 768px) {
  .category-view-colors {
    gap: 3px;
    margin-top: 4px;
  }

  .category-colors-text {
    font-size: 12px;
  }

  .category-color {
    width: 11px;
    height: 11px;
  }
}
