.dd-combobox {
    max-width: 12.5rem;
}

.dd-dropdown-toggle {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0.6rem;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

.dd-dropdown-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dd-dropdown-menu {
    padding: 0.5rem;
    margin-top: 0.175rem;
    min-width: 10rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.175);
    background-color: white;
    max-height: 25rem;
    z-index: 50000;
}

.dd-dropdown-menu * {
    font-size: 1rem;
}

.dd-dropdown-menu .search-container {
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
}

.dd-items-list > div > div {
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    background: white;
    color: black;
    word-wrap: break-word;
    transition: background-color 0.3s ease-out;
}

.dd-items-list > div > div:hover {
    background: var(--bs-but-light-hover-background);
}

.dd-items-list-pager {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-scrollbar-color) transparent;
}

.dd-items-list .cellListKeyboardSelectedItem,
.dd-items-list .selected {
    background: transparent !important;
    outline: none !important;
}

.dd-dropdown-menu .search-input {
    height: 1.875rem;
}

.dd-search-input {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-bottom: 1px solid #eee;
    outline: none;
}

.dd-items-list {
    width: 100%;
    cursor: pointer;
}

.dd-items-list .selected {
    background-color: #f8f9fa;
}

.dd-items-list:hover .selected {
    background-color: #e9ecef;
}

.dd-unselect-btn {
    justify-content: flex-start;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.dd-yes-no {
    --bs-dropdown-padding-y: 0 !important;
    --bs-dropdown-border-width: 0 !important;
}
