.custom-dropdown {
    position: absolute;
    z-index: 99;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 1rem;
    background: white;
    cursor: pointer;
    user-select: none;
}

.selected {
    display: flex;
    align-items: center;
    padding-left: 1rem;

    border-radius: 8px !important;
    height: 50px !important;
    line-height: 32px !important;

    background-color: #fff !important;
    color: #a1a6bb !important;
    border: 1px solid #ced4da !important;
    font-size: 14px !important;

}

.search-box {
    display: none;
    width: calc(100% - 20px);
    padding: 5px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.options-list {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
}

.options-list li {
    padding: 10px;
    cursor: pointer;
}

.options-list li:hover {
    background: #f0f0f0;
}

/* Atualizado: Agora usa openchosen em vez de open */
.custom-dropdown.openchosen .options-list {
    display: block;
    position: relative;
    width: 100%;
}

.custom-dropdown.openchosen .search-box {
    display: block;
}