.searchable-dropdown-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.searchable-input {
    position: relative;
    z-index: 1;
}

.searchable-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.searchable-scroll {
    max-height: 200px;
    /*overflow-y: auto;*/
}

.searchable-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.15s ease-in-out;
}

.searchable-item:hover {
    background-color: #f8f9fa;
}

.searchable-item:last-child {
    border-bottom: none;
}

.searchable-item.loading {
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.searchable-item.no-results {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    cursor: default;
}

.searchable-item.no-results:hover {
    background-color: transparent;
}