.context-menu {
    display: none;
    position: fixed; /* Change from absolute to fixed if you need it relative to the viewport */
    z-index: 1000;
    width: 200px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px #888;
    padding: 10px 0;
    list-style-type: none; /* Ensure the list style does not show bullets */
    margin: 0; /* Remove default margin */
}
.context-menu li {
    padding: 8px 16px;
    cursor: grab;
    color: black; /* Ensure text color is set for visibility */
}
.context-menu li:hover {
    background-color: #f0f0f0;
}
.context-menu li.disabled {
    color: #ccc;
    cursor: not-allowed;
}
.context-menu li.disabled:hover {
    background-color: transparent; // No hover effect
}
