.auto-complete-native-select {
    display: none !important;
}

.auto-complete-select {
    position: relative;
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}

.auto-complete-select-control {
    position: relative;
    width: 100%;
}

.auto-complete-select-input {
    width: 100%;
    min-height: 2.65rem;
    border: 1px solid rgba(64, 91, 101, 0.14);
    border-radius: 8px;
    background: #fff;
    color: #142329;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.35;
    outline: none;
    padding: 0.55rem 2.35rem 0.55rem 0.75rem !important;
}

.auto-complete-select-input:focus {
    border-color: rgba(57, 184, 117, 0.55);
    box-shadow: 0 0 0 0.18rem rgba(57, 184, 117, 0.14);
}

.auto-complete-select-input::placeholder {
    color: rgba(66, 89, 100, 0.58);
}

.auto-complete-select-sm .auto-complete-select-input {
    min-height: 2.15rem;
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
    font-size: 0.875rem;
}

.auto-complete-select-lg .auto-complete-select-input {
    min-height: 3.05rem;
    padding-top: 0.62rem !important;
    padding-bottom: 0.62rem !important;
    font-size: 1rem;
}

.auto-complete-select.is-disabled {
    opacity: 0.72;
}

.auto-complete-select.is-disabled .auto-complete-select-input {
    cursor: not-allowed;
}

.auto-complete-select-toggle {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border: 0;
    border-radius: 999px;
    background: rgba(57, 184, 117, 0.12);
    color: #217247;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.auto-complete-select-toggle:hover {
    background: rgba(57, 184, 117, 0.2);
    color: #142329;
}

.auto-complete-select.is-open .auto-complete-select-toggle {
    transform: translateY(-50%) rotate(180deg);
}

.auto-complete-select-menu {
    position: fixed;
    z-index: 2147483000;
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(93, 124, 134, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(35, 74, 83, 0.18);
    padding: 0.35rem;
}

.auto-complete-select-option,
.auto-complete-select-empty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 34px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #142329;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.42rem 0.55rem;
    text-align: left;
}

.auto-complete-select-option:hover,
.auto-complete-select-option.is-active {
    background: rgba(57, 184, 117, 0.13);
    color: #217247;
}

.auto-complete-select-option.is-selected {
    background: #e8f8ee;
    color: #142329;
}

.auto-complete-select-option[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.auto-complete-select-option-check {
    width: 1rem;
    flex: 0 0 auto;
    color: #217247;
    font-weight: 900;
    text-align: center;
}

.auto-complete-select-option-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auto-complete-select-empty {
    justify-content: center;
    color: #607680;
}

@media (max-width: 767px) {
    .auto-complete-select-menu {
        max-height: min(280px, 54vh);
    }
}
