.ms-wrapper {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.ms-display {
    padding: 8px;
    border: 1px solid #aaa;
    background: #fff;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ms-caret {
    font-size: 14px;
}
.ms-option label{margin: 0; font-size: 16px;}

.ms-dropdown {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 2px;
    margin-top: 3px;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
}

.ms-dropdown.show {
    display: block;
}

.ms-search {
    width: 95%;
    margin: 8px;
    padding: 5px;
}

.ms-option {
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.ms-option:hover {
    background: #f3f3f3;
}

.ms-option input {width: 16px; height: 16px;
    margin-top: 3px;}