.vue-filtered-dropdown-container {
    position: relative;
    height: 34px;
}

.vue-filtered-dropdown {
    width: 100%;
    position: absolute;
}

.vue-filtered-dropdown input:not(.isLookup) {
    background-image: url(data:image/png;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
    background-position: center right;
    background-repeat: no-repeat;
}

.vue-filtered-dropdown .dropdown-options {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 5;
    max-height: 250px;
    overflow: auto;
}

.vue-filtered-dropdown .dropdown-options table {
    width: 100%;
}

.vue-filtered-dropdown .dropdown-options table thead {
    position: sticky;
    top: 0;
    background: #eee;
    z-index: 6;
}

.vue-filtered-dropdown .dropdown-options tr {
    height: 25px;
}

.vue-filtered-dropdown .dropdown-options td,
.vue-filtered-dropdown .dropdown-options th {
    padding: 5px 8px;
}

.vue-filtered-dropdown .dropdown-options .header-container {
    display: flex;
    align-items: center;
}

.vue-filtered-dropdown .dropdown-options th .sort-icons,
.vue-filtered-dropdown .action-icon {
    font-size: 10px;
    margin: 3px 5px 0px 5px;
}

.vue-filtered-dropdown .dropdown-options tr:hover {
    cursor: pointer;
}

.vue-filtered-dropdown .dropdown-options tbody tr:hover {
    background: #d6eef8;
    cursor: pointer;
}

.vue-filtered-dropdown .dropdown-options tbody tr.selected {
    background: skyblue;
}

.vue-filtered-dropdown .dropdown-options .loading-container {
    padding: 5px; 
    text-align: center; 
    display: flex; 
    flex-direction: column;
}

.vue-filtered-dropdown .dropdown-options .loading-container .loading {
    height: 50px;
}

.vue-filtered-dropdown .selected-option-pane {
    position: absolute;
    top: 0;
    margin: 3px;
    background: #eee;
    padding: 4px 20px 4px 7px;
    border-radius: 3px;
}

.vue-filtered-dropdown .selected-option-pane.disabled {
    cursor: not-allowed;
    color: #555;
}

.vue-filtered-dropdown .action-icon:hover {
    cursor: pointer;
}

.vue-filtered-dropdown .selected-option-pane .action-icon {
    position: absolute;
    top: 5px;
    right: 2px;
    color: #777;
}

.vue-filtered-dropdown .selected-option-pane .action-icon:hover {
     color: inherit;
     cursor: pointer;
}

.vue-filtered-dropdown .action-icon.refresh-icon {
    position: absolute;
    top: 2px;
    right: 0;
    font-size: inherit;
}