.hydra-context-menu {
    position: absolute;
    background-color: #2a2f37;
    border: 1px solid #3f8ff0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    padding: 0;
    min-width: 160px;
    z-index: 100000;
    display: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn 0.1s ease-out;
}

.hydra-context-menu li {
    padding: 8px 15px;
    color: #eee;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hydra-context-menu li:hover {
    background-color: #3f8ff0;
    color: white;
}

.hydra-context-menu li i {
    width: 16px;
    text-align: center;
    color: #aaa;
}

.hydra-context-menu li:hover i {
    color: white;
}

.hydra-context-menu ul {
    list-style: none;
    margin: 0;
    padding: 5px 0;
}

.hydra-context-menu.visible {
    display: block;
}

.hydra-context-menu .menu-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
    padding: 0;
}

.hydra-copy-feedback {
    position: absolute;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #3f8ff0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-out;
    z-index: 100001;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: nowrap;
}

.hydra-copy-feedback.visible {
    opacity: 1;
    transform: translate(-50%, -120%);
}

.map-long-press-indicator {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #3f8ff0;
    border-radius: 50%;
    background-color: rgba(63, 143, 240, 0.3);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 99999;
    animation: pulse-ring 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}