.context-menu {
    position: absolute;
    z-index: 2000;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 5px 0;
    min-width: 150px;
}

.menu-item {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item:hover {
    background-color: #f5f6fa;
    color: #3498db;
}

.menu-divider {
    height: 1px;
    background-color: #eee;
    margin: 4px 0;
}
