/*-----------------
    9. Select — shadcn skin
-----------------------*/
.select2-container {
  min-width: 100% !important;
  width: auto !important;
  z-index: 99;
  padding: 0 !important;
  color: var(--color-text);
}

.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container--default .select2-selection--single {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-text);
  font-size: 14px;
  line-height: 38px;
  border-radius: var(--radius-input);
  padding-right: 30px;
  padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  left: 50%;
  border-color: var(--color-text-light);
  border-style: solid;
  border-width: 0 1.5px 1.5px 0;
  padding: 3px;
  height: 0;
  margin-left: -10px;
  margin-top: -4px;
  width: 0;
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: var(--color-text-light);
  border-width: 1.5px 0 0 1.5px;
  margin-top: 4px;
  padding: 3px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--color-bg-light);
  color: var(--color-text);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--color-bg-light);
  color: var(--color-text);
}

.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  background: #ffffff !important;
  border: 1px solid var(--color-ring);
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.08);
}

.select2-dropdown {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.select2-container--default .select2-results__option {
  font-size: 14px;
  padding: 8px 12px;
}

span.select2-container.select2-container--default.select2-container--open {
  z-index: 9999;
}
