.vst-searchable-select-shell {
  position: relative;
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.vst-searchable-select-trigger {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #7f9db9;
  background: #ffffff;
  color: #1f2a44;
  cursor: pointer;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  text-align: left;
}

.vst-searchable-select-trigger.is-placeholder .vst-searchable-select-trigger-label {
  color: #667085;
}

.vst-searchable-select-trigger:focus {
  border-color: #3b6fb6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 111, 182, 0.15);
}

.vst-searchable-select-trigger-icon {
  margin-left: 10px;
  color: #667085;
  font-size: 11px;
}

.vst-searchable-select-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
  border: 1px solid #7f9db9;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.vst-searchable-select-panel-search {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0 0 8px 0;
  padding: 6px 8px;
  border: 1px solid #9aa9c5;
  border-radius: 3px;
  background-color: #ffffff;
  color: #1f2a44;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

.vst-searchable-select-panel-search:focus {
  border-color: #3b6fb6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 111, 182, 0.15);
}

.vst-searchable-select-options {
  max-height: 220px;
  overflow-y: auto;
}

.vst-searchable-select-option {
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 7px 8px;
  border: none;
  background: transparent;
  color: #1f2a44;
  cursor: pointer;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  text-align: left;
}

.vst-searchable-select-option:not([hidden]) {
  display: flex;
}

.vst-searchable-select-option[hidden] {
  display: none;
}

.vst-searchable-select-option:hover,
.vst-searchable-select-option:focus {
  background-color: #eef4ff;
  outline: none;
}

.vst-searchable-select-option.is-selected {
  background-color: #dbe7fb;
  font-weight: bold;
}

.vst-searchable-select-option-indicator {
  margin-left: 10px;
  color: #24539c;
  font-size: 10px;
}

.vst-searchable-select-empty {
  padding: 8px 4px 2px 4px;
  color: #6c7280;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

.vst-searchable-select-native {
  display: none;
}

.vst-searchable-select-shell.is-disabled .vst-searchable-select-trigger {
  background-color: #f1f3f6;
  color: #7b8497;
  cursor: not-allowed;
}
