
.evui-combobox {
    display: inline-block;
    border: 1px solid lightsteelblue;
    border-radius: 4px;
    background-color: transparent;
}

.evui-combobox-combo {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 18px;
    line-height: 30px;
    box-sizing: border-box;
    margin: 0px;
}

.evui-combobox input[type="text"] {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 18px;
    background-color: transparent;
    color: lightgrey;
    box-sizing: border-box;
}

.evui-combobox input[type="text"]:hover {
    cursor: pointer;
}

.evui-combobox input[type="button"] {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    width: 30px;
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.evui-combobox input[type="button"]:focus,
.evui-combobox input[type="button"]:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.4);
}


.evui-combobox-dropdown {
    left: 0px;
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: lightslategray;
    color: white;
    font-size: 18px;
    line-height: 30px;
    box-sizing: border-box;
    padding-inline-start: 0px;
    margin: 0px;
    padding: 4px 4px 0px 4px;
    max-height: 600px;
    width: 100%;
}

.evui-combobox-item {
    list-style-type: none;
    border: none;
    background-color: #fdfdfd;
    border-radius: 4px;
    margin-bottom: 4px;
    border: 1px solid #fdfdfd;
    color: black;
    padding-left: 8px;
    cursor: pointer;
}

.evui-combobox-item-selected {
    background-color: lightgoldenrodyellow;
}
