.custom-context-menu {
    display: none;
    position: absolute;
    background-color: white !important;
    border: 3px solid #d21c21 !important;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.custom-context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-context-menu li {
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
}

.custom-context-menu li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.custom-context-menu li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-context-menu li:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.custom-context-menu li:hover {
    background-color: #e9e9e9 !important;
}