.multiselect-wrapper {
    position: relative;
    width: 100%;
}

.multiselect-display {
    border: 1px solid #ccc;
    border-radius: 999px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: white;
}

.multiselect-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 25px;
    border-top: none;
    background: white;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.multiselect-dropdown label:first-child {
    margin-top: 10px;
}

.multiselect-dropdown label {
    display: block;
    padding: 6px 10px;
    cursor: pointer;
}

.multiselect-dropdown label:hover {
    background-color: #f0f0f0;
}

.disabled,
.disabled * {
    cursor: default;
}