﻿.context-menu {
    position: relative;
}

/* Context Menu Trigger Button */
.context-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

/* Context Menu */
.menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    /* Position the menu to the left of the button */
    /*left: -150px;*/ /* Adjust the spacing as needed */
    right: calc(100% + 10px); /* Adjust the spacing as needed */
    top: 0;
    min-width: 280px;
}

    .menu a {
        display: block;
        padding: 8px 12px;
        text-decoration: none;
        color: #333;
    }

/* Show the menu on button hover */
 .menu.show {
    display: block;
}