.ajax-select-wrapper {
    position: relative;
}

.ajax-select-dropdown {
    display: none;
    position: absolute;
    z-index: 1060;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
    max-height: 300px;
    overflow: hidden;
}

.ajax-select-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.ajax-select-item {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ajax-select-item:hover,
.ajax-select-item.focused {
    background-color: #f5f5f5;
}

.ajax-select-item.selected {
    background-color: #e8f0fe;
    font-weight: 600;
}

.ajax-select-loading,
.ajax-select-empty {
    padding: 8px 12px;
    color: #999;
    font-size: 13px;
}
