.context {
    z-index: 99;
    position: absolute;
    display: flex;
    flex-flow: row nowrap;
    border-radius: 8px;
    background-color: #1d1f21;
    /* width: min-content; */
    border: 2px solid #303233;
    box-shadow: 2px 2px 8px #00000040;
    min-width: 80px;
    min-height: 80px;
}

.context ul {
    padding: 8px;
    margin: 0;
    list-style: none;
}

.context li {
    padding: 4px 8px;
    user-select: none;
    cursor: pointer;
    border-radius: 4px;
}

.context li:hover {
    /* font-weight: 500; */
    background: linear-gradient(180deg, #3d3d3d, #303233 80%);
}

.context .disabled {
    pointer-events: none;
    opacity: 0.5;
}
