.scrollable {
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
}

.scrollable-div {

    overflow-y: auto;
    width: 100%;
    border: 1px solid #ccc; /* Optional: Adds a border for visibility */
}

.list .list-item {
    cursor: pointer;
}

.list .list-item:hover {
    background-color: var(--bs-form-control-secondary-light);
}

.list .list-item-img {

}

.list .list-item-img img {
    width: 48px;
    height: 48px;
    border-radius: 60px;
}