/* Prevent the dropdown from overflowing the left side of the screen */
/* TODO: This was only tested on index.html.  It does not work well on expression.html + it's a hacky solution */
#dropdown-pattern-lists .dropdown-menu {
    width: 55vw;
    min-width: 600px; /* any less and the dropdown overflows the right side of the screen */
    max-width: 800px;
}

#dropdown-pattern-lists .dropdown-item h3 {
    font-weight: bold;
    font-size: 120%;
}
#dropdown-pattern-lists .dropdown-item div.column.is-scrollable {
    max-height: 40vh;
    overflow-y: scroll;
}
#dropdown-pattern-lists .ul-li {
    border-radius: 0.5em;
    padding: 0.4em;
    margin-bottom: 0.2em;
}
#dropdown-pattern-lists .ul-li.is-selected {
    background-color: #EFEDF7;
}