/* Searchable select (type-to-filter, max 6 visible) */
.ss-wrap {
    position: relative;
    z-index: 1;
}

.ss-wrap.is-open {
    z-index: 6;
}

.ss-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    pointer-events: none;
}

.ss-input {
    cursor: text;
}

.ss-input:disabled {
    cursor: not-allowed;
    opacity: .65;
    background-color: #f1f5f9;
}

.ss-wrap.is-open .ss-input {
    border-color: #DC143C;
    box-shadow: 0 0 0 .2rem rgba(220, 20, 60, .12);
}

.ss-list {
    max-height: 16rem;
    overflow: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
    padding: .35rem;
}

.ss-option {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    border-radius: 8px;
    padding: .55rem .7rem;
    font-size: .92rem;
    color: #152238;
    transition: background .15s ease;
}

.ss-option:hover,
.ss-option:focus {
    background: #f1f5f9;
    outline: none;
}

.ss-option.is-active {
    background: rgba(220, 20, 60, .08);
    color: #B01030;
    font-weight: 600;
}

.ss-empty {
    padding: .65rem .7rem;
    color: #94a3b8;
    font-size: .88rem;
}
