/* Style for the checkbox container when it is selected - keeping the box-shadow */
.Choices__choice--1[aria-checked="true"] {
  background-color: var(--grey-light, #f8f8f8) !important; /* Keeps the background transparent */
  border: 0 !important; /* No border */
  box-shadow: rgba(0,0,0,0.6) !important; /* Preserves the box-shadow, replace with original value if different */
}

/* Change the SVG fill color when the container is focused or active */
.Choices__choice--1[aria-checked="true"] svg {
  fill: #c09673; /* Replace with the color you want for the checkbox */
}

/* Reset the label styles to default if they change on selection */
.Choices__choice--1 .Choices__label {
  font-weight: normal !important;
  color: #1f243a; /* Replace with your desired text color */
}
