.context-menu {
    position: fixed;
    background: rgba(255, 255, 255, 0.582);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 4px 0;
    min-width: 180px;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 13px;
}

.context-menu::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 20px solid rgba(255, 255, 255, 0.582);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.context-menu-item {
    padding: 6px 20px;
    margin: 0 4px;
    cursor: pointer;
    color: #000;
    transition: background 0.15s ease;
    border-radius: 6px;
}

.context-menu-item:hover:not(.disabled) {
    background: #007AFF;
    color: #ffffff;
}

.context-menu-item.disabled {
    color: #ffffff;
    cursor: default;
}