.container-dual-list-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%
}
.content-container, .selected-container {
    border: 1px solid #ccc;
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    margin: 10px;
}
.buttons-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.buttons-container button {
    margin: 5px;
}
.item, .selected-item {
    padding: 5px;
    cursor: pointer;
}
.item:hover, .selected-item:hover {
    background-color: #f0f0f0;
}
.item.selected, .selected-item.selected {
    background-color: #d0e7ff;
}
.search-bar {
    margin-bottom: 10px;
    margin-top:0;
    width: 100%;
}
.content-wrapper, .selected-wrapper {
    width: 50%;
}
