*[data-suggestion-popup=suggestion-popup] {
    height: 250px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 4px;

    @media (max-width: 700px) {
        height: unset;
        max-height: 80px;
    }

    & > .items {
        flex: 1 1 100%;
        overflow: auto;
        & > .presenter {
            & > * {
                padding: 5px;
            }
            & > [data-selected-item=true] {
                background-color: lightgreen;
            }
        }
    }
}