/* @🍮 */
/* === 右键菜单 === */

.context-menu {
    position: fixed;
    z-index: 1000;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 5px 0;
    animation: fadeIn 0.1s ease;
}

.context-menu-item {
    padding: 10px 20px;
    cursor: pointer;
}

.context-menu-item:hover {
    background-color: #f5f5f5;
}

.context-menu-item.danger {
    color: #e53935;
}
