/**
 * Minimal NiceSelect2 styles — does NOT load the full nice-select2 CSS
 * (conflicts with jquery-nice-select shared .list rules).
 */
.nice-select .nice-select-dropdown {
  background-color: #fff;
  border-top: 0;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

/* Prevent jquery-nice-select .list rules from hiding NiceSelect2 dropdown content */
.nice-select-dropdown > .list {
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  max-height: none;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
