.context-menu {
    display: flex;
    flex-direction: column;

    position: fixed;
    min-width: 200px;
    padding: 5px 0;

    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    z-index: 999999;

    animation: contextFade .15s ease;
}

.context-menu-item {
    padding: 9px 14px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease;
}

.context-menu-item:hover {
    background: #f1f3f5;
    border: none;
    border-radius: 5px;
    padding: auto 5px;
}

body[data-style-mode="dark"] .context-menu {
    background: #2b2f33;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
}

body[data-style-mode="dark"] .context-menu-item:hover {
    background: #3a3f44;
}

@keyframes contextFade {
    from {
        opacity: 0;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}