:host {
  display: flex;
  align-items: center;
}

.pcac-legend-label {
  margin-right: 8px;
  margin-bottom: 2.5px;
}

.pcac-legend-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 8px;

  &:hover {
    .pcac-legend-circle {
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
      transform: scale(1.2);
    }
  }
}

.pcac-legend-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pcac-legend-unchecked {
  opacity: 0.5;
}

.pcac-legend-item-last {
  margin-right: 0;
}