/* Searchable select enhancer — Nexura navy / orange */
.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;
    opacity: 0 !important;
    pointer-events: none !important;
}
.ss-wrap {
    position: relative;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}
.ss-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0.625rem 0.75rem;
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #12181d;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.ss-trigger:hover {
    border-color: rgba(0, 0, 0, 0.18);
}
.ss-wrap.ss-open .ss-trigger,
.ss-trigger:focus {
    border-color: var(--brand-600, #f87800);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-600, #f87800) 18%, transparent);
}
.ss-label {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ss-chevron {
    flex-shrink: 0;
    font-size: 0.65rem;
    color: #6b7c86;
    transition: transform .15s;
}
.ss-wrap.ss-open .ss-chevron {
    transform: rotate(180deg);
}
.ss-wrap.ss-invalid .ss-trigger {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}
.ss-disabled .ss-trigger {
    cursor: not-allowed;
    background: var(--sand-50, #fffaf5);
    color: #6b7c86;
}
.ss-panel {
    position: fixed;
    z-index: 80;
    min-width: 10.5rem;
    overflow: hidden;
    border-radius: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 24, 29, 0.14), 0 2px 6px rgba(18, 24, 29, 0.06);
}
.ss-panel[hidden] {
    display: none !important;
}
.ss-search-wrap {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.55rem 0.55rem 0.5rem;
}
.ss-panel.ss-no-search .ss-search-wrap {
    display: none;
}
.ss-search-icon {
    position: absolute;
    left: 1.05rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #6b7c86;
    pointer-events: none;
}
.ss-search {
    width: 100%;
    border-radius: 0.55rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--sand-50, #fffaf5);
    padding: 0.45rem 0.7rem 0.45rem 1.9rem;
    font-size: 0.8125rem;
    color: #12181d;
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.ss-search::placeholder {
    color: #8a9aa3;
}
.ss-search:focus {
    border-color: rgba(0, 0, 0, 0.16);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(18, 24, 29, 0.04);
}
.ss-list {
    max-height: 15rem;
    overflow-y: auto;
    padding: 0.35rem;
}
.ss-option {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    padding: 0.5rem 0.7rem;
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.25;
    color: #12181d;
    cursor: pointer;
}
.ss-option + .ss-option {
    margin-top: 0.1rem;
}
.ss-option:hover,
.ss-option.is-active {
    background: var(--sand-50, #fffaf5);
}
.ss-option.is-selected {
    background: var(--brand-50, #fff4eb);
    color: var(--brand-700, #c45500);
    font-weight: 600;
}
.ss-option.is-selected.is-active,
.ss-option.is-selected:hover {
    background: color-mix(in srgb, var(--brand-50, #fff4eb) 70%, var(--brand-100, #ffe4cc));
}
.ss-option:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}
.ss-empty {
    padding: 0.85rem 0.65rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7c86;
}
.ss-compact .ss-trigger {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 0.75rem;
}
.ss-compact .ss-panel {
    min-width: 9.5rem;
}
.ss-compact .ss-option {
    font-size: 0.8125rem;
    padding: 0.45rem 0.65rem;
}
