.menu-list {
    position: absolute;
    background-color: #ddd;
    padding: 4px;
    max-width: 300px;
    width: 80%;
    border: 6px solid #222;
}

.menu-item {
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    font-size: 1.2em;
    image-rendering: pixelated;
    color: #222;
    background-color: #ddd;
    padding: 5px;
    list-style: none;
    border-radius: 2px;
    transition: background-color 500ms;
}

.menu-item.selected {
    color: #ddd;
    background-color: #222;
}

.menu-item.selected::before {
    content: "▶ ";
    font-size: 0.8em;
}

.menu-title {
    border-bottom: 4px solid #222;
}
