/* Custom Context Menu */
.context-menu {
    position: absolute;
    z-index: 10000;
    width: 150px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #d5d5d7;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    font-family: 'Golos Text', -apple-system, sans-serif;
    overflow: hidden;
}

.context-menu-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.1s;
}

.context-menu-item:hover {
    background-color: #f0f0f0;
    color: #1367ff;
}

.context-menu-item svg {
    width: 16px;
    height: 16px;
    color: inherit;
}