

.popup-menu {
    position: fixed;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    min-width: 150px;
    z-index: 1000001;
    display: none; 
    opacity: 0;
}
.popup-menu-overlay {
    position: fixed;
    top : 0;
    left : 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1000000;
}
.popup-menu .items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popup-menu .item {
    padding: 10px;
    cursor: pointer;
}

.popup-menu .item:hover {
    background: #eee;
}


.popup-menu.show {
    transition: all .2s;
    opacity: 1;
}