/* TravelTracks.org v2.0.251127 - Context Menu Styles */

.context-menu {
    position: fixed;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px 0;
    z-index: 10000;
    min-width: 220px;
    font-size: 14px;
    display: none;
}

.context-menu.active {
    display: block;
}

.context-menu-item {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    color: #333;
}

.context-menu-item:hover {
    background-color: #667eea;
    color: white;
}

.context-menu-separator {
    height: 1px;
    background-color: #e0e0e0;
    margin: 4px 0;
}

.context-menu-header {
    padding: 8px 16px;
    font-weight: bold;
    color: #667eea;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 4px;
}

.location-link {
    cursor: context-menu;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 2px;
    transition: background-color 0.2s;
}

.location-link:hover {
    background-color: #f0f0f0;
    text-decoration: underline;
}

/* Prevent text selection during right-click */
.location-link {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

