.custom-select {
  position: relative;
  width: 200pp; /* Adjust as needed */
  width: 100%;
  height: 42px;
  user-select: none;

  background-color: white;
  border: 1px solid var(--safir-blue-800);
  color: var(--safir-blue-800);
  
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

.custom-select.selected:not(.open) {
  background-color: var(--safir-blue-800);
  color: white;
}

.custom-select.selected:not(.open) .arrow {
  filter: invert(1) brightness(2);
}

.select-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  color: inherit;
  padding: 0 16px 0px 12px;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}

/* .select-box:hover {
  background-color: var(--safir-blue-50);
} */

.arrow {
  width: 16px;
  height: 16px;
  background-image: url('/assets/images/arrow_down.svg'); /* Replace with your SVG */
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.options {
  position: absolute;
  width: 100%;
  background: var(--safir-blue-300);
  display: none;
  flex-direction: column; /* Flex layout */
  top: calc(42px + 8px + 10px); /* Adjust for positioning */
  left: 0; /* Adjust if needed */
  z-index: 10;

  padding: 10px 12px;
  border-radius: 8px;

  transition: top 0.3s;
}

.option {
  cursor: pointer;

  color: white;

  font-weight: 400;

  padding: 10px 0;
  border: 0px solid var(--safir-blue-100);
  border-bottom-width: 1px;
}

.option:hover {
  /* background: var(--hover-bg); */
}

.custom-select.open .options {
  display: flex;
  top: calc(42px + 8px); /* Adjust for positioning */
}

.custom-select.open .arrow {
  transform: rotate(-180deg);
}