#map-context-menu {
    position: fixed;
    z-index: 10000;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 190px;
    padding: 4px 0;
    font-size: 0.875rem;
    font-family: inherit;
    user-select: none;
}

.ctx-item {
    padding: 7px 14px;
    cursor: pointer;
    color: #212529;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctx-item:hover {
    background: #f1f3f5;
    color: #1971c2;
}

.ctx-item .ctx-icon {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
    color: #868e96;
}

.ctx-item:hover .ctx-icon {
    color: #1971c2;
}
