.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select-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;
}

.searchable-select-input {
    width: 100%;
    cursor: text;
}

.searchable-select-input:disabled {
    background-color: var(--bs-secondary-bg, #e9ecef);
    cursor: not-allowed;
}

.searchable-select-dropdown {
    position: absolute;
    z-index: 1060;
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    margin-top: 2px;
    background: var(--bs-body-bg, #fff);
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.searchable-select-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.searchable-select-option:hover,
.searchable-select-option.highlighted {
    background-color: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.12);
    color: inherit;
}

.searchable-select-option.active {
    font-weight: 600;
}

.searchable-select-empty {
    padding: 0.65rem 0.75rem;
    color: var(--bs-secondary-color, #6c757d);
    font-size: 0.9rem;
}
