select.ws-select {
  min-width: 110px;
  min-height: 34px;
  border: 1px solid #EDEEED !important;
  border-radius: 4px !important;
  background-color: #ffffff !important;
  color: #1E1E1E !important;
  font-size: 13px !important;
  line-height: 1.5;
  padding: 6px 32px 6px 12px;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

select.ws-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ws-select-wrap {
  position: relative;
  display: inline-block;
  min-width: 110px;
  vertical-align: middle;
}

.ws-select-wrap.is-open {
  z-index: 9998;
}

.ws-select-trigger {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #EDEEED;
  border-radius: 4px;
  background: #ffffff;
  color: #1E1E1E;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 12px;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ws-select-wrap--pagination .ws-select-trigger {
  height: 28px;
  min-height: 28px;
  font-size: 15px;
  padding-top: 0;
  padding-bottom: 0;
}

.ws-select-trigger:hover {
  border-color: #b8c7d9;
}

.ws-select-wrap.is-open .ws-select-trigger,
.ws-select-trigger:focus {
  outline: none;
  border-color: #86b7fe;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.ws-select-wrap.is-disabled .ws-select-trigger {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}

.ws-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-select-trigger.is-empty .ws-select-value {
  color: #999;
}

.ws-select-caret {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-color: #6c757d transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  transition: transform 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.ws-select-wrap.is-open .ws-select-caret {
  border-color: transparent transparent #1B5CFF transparent;
  border-width: 0 4px 5px 4px;
}

.ws-select-menu {
  position: fixed;
  z-index: 9998;
  min-width: 110px;
  max-height: 240px;
  display: none;
  padding: 4px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #EDEEED;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.ws-select-menu.is-open {
  display: block;
}

.ws-select-menu--pagination {
  max-height: 190px;
}

.ws-select-option {
  width: 100%;
  display: block;
  border: 0;
  background: #ffffff;
  color: #1E1E1E;
  font-size: 13px;
  line-height: 1.5;
  padding: 7px 12px;
  text-align: left;
  cursor: pointer;
}

.ws-select-option:hover,
.ws-select-option:focus {
  outline: none;
  background: #f1f7ff;
  color: #1B5CFF;
}

.ws-select-option.is-selected {
  background: #e7f1ff;
  color: #1B5CFF;
  font-weight: 600;
}

.ws-select-option.is-disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

select.ws-select:hover {
  border-color: #b8c7d9 !important;
}

select.ws-select:focus {
  outline: none;
  border-color: #86b7fe !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12) !important;
}

select.ws-select:disabled {
  border-color: #e2e8f0 !important;
  background-color: #f8fafc !important;
  color: #94a3b8 !important;
  cursor: not-allowed;
  opacity: 1;
}

select.ws-select option {
  padding: 7px 12px;
  background-color: #ffffff;
  color: #1E1E1E;
  font-size: 13px;
  line-height: 1.5;
}

select.ws-select option:hover,
select.ws-select option:focus {
  background-color: #f1f7ff;
  background-image: linear-gradient(#f1f7ff, #f1f7ff);
  color: #1B5CFF;
}

select.ws-select option:checked {
  background-color: #e7f1ff;
  background-image: linear-gradient(#e7f1ff, #e7f1ff);
  color: #1B5CFF;
  font-weight: 600;
}
