.contextMenuCard {
    min-width: 100px;
    padding: 3px 5px;
    margin: 2px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-shadow: 1px 1px 2px #878787;
    position: fixed;
    user-select: none;
    z-index: 100;
}

.contextMenuCard:focus {
    outline: none;
}

.contextMenuCard li {
    list-style: none;
    margin: 2px 0px;
    cursor: pointer;
    min-height: 26px;
    padding: 0px 8px;
    color: black;
}

.contextMenuCard li:hover {
    background-color: #f5f5f5;
}