
.welo-custom-select {
  position: relative;
  width: 100%;
  background: #fcfcfc;
  border-radius: 0.6rem;
  cursor: pointer;
  border: 1px solid #d0d0d0;
  user-select: none;
  font-family: inherit;
  padding-right: 36px;
  display: flex;
  align-items: center;
  overflow: visible !important;
}

.welo-select-display {
  padding: 9px;
  font-size: 14px;
  color: #111;
}

/* SVG Arrow */
.welo-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .25s ease;
  pointer-events: none;
}

.welo-custom-select.open .welo-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.welo-select-options {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 100%;
  background: white;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  z-index: 999999;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.welo-option {
  padding: 9px;
  cursor: pointer;
  font-size: 14px;
}

.welo-option:hover {
  background: #f7f7f7;
}
