
.combo-wrapper {
    position:static;
    display: inline-block;
    background-color: white;
    min-width: 0;
    max-width: max-content;
    padding: 3px;
    width: auto;
}

.combo-button {
    display: flex;
    justify-content: space-between;
    width: auto;
}

.combo-arrow {
    margin-left: 5px;
    
    height: 20px;
    width: 20px;
}

.combo-caption {
    display: inline-block;
    cursor: default;
    white-space: nowrap;

    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.combo-search {
    display: none;
    width: 100%;
    height: 100%;
    outline:none;
    background-color: transparent;
    border: none;
    padding: 3px;
    margin: 0;
}

.combo-popup {
    position: absolute;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    z-index: 999;
    border-radius: 3px;
    border: 0px solid black;
    width: auto;
    height: auto;
    background-color: white;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

.combo-wrapper ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.combo-wrapper.active .combo-search {
    display: block;
    width: 100%;
    height: min-content;
}

.combo-wrapper.active .combo-popup {
    display: grid;
    grid-template-columns: 1fr;
}

.combo-popup {
    width: max-content;
}

.combo-popup-list {
    overflow-y: auto;
    height: 100%;
    width: 100%;

    max-width: 95vw;
}

.combo-popup-list li {
    cursor: default;
    background-color: #e0e0e0;
    padding: 3px;
    margin: 0;
    white-space: nowrap;

    max-width: 95vw;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.combo-popup-list li:hover {
    cursor: default;
    background-color: black;
    color: white;
}

.combo-popup-list .highlight {
    background-color: #c0c0ff;
    color: black;
}
