﻿body {
}

.circle-menu {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: none;
    z-index: 9999;
    background: #2e2e31;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    overflow: hidden;
}

.circle-menu .menu-item {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-sizing: border-box;
}

    .circle-menu .menu-item:hover {
        background: #444;
    }

.menu-item.top-left {
    top: 0;
    left: 0;
    border-right: 1px solid #555;
    border-bottom: 1px solid #555;
}

.menu-item.top-right {
    top: 0;
    right: 0;
    border-left: 1px solid #555;
    border-bottom: 1px solid #555;
}

.menu-item.bottom-left {
    bottom: 0;
    left: 0;
    border-right: 1px solid #555;
    border-top: 1px solid #555;
}

.menu-item.bottom-right {
    bottom: 0;
    right: 0;
    border-left: 1px solid #555;
    border-top: 1px solid #555;
}

.circle-menu .menu-cancel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #cd3737;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: background 0.2s;
    user-select: none;
}

    .circle-menu .menu-cancel:hover {
        background: #cc0000;
    }



/*marker menu */

.marker-popup {
    position: absolute;
    background: #1e1e1e;
    border: 1px solid #444;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    min-width: 180px;
    font-family: 'Segoe UI', sans-serif;
}


    .marker-popup p {
        font-size: 14px;
        margin: 0 0 6px;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }

    .marker-popup .nato-options {
        display: flex;
        gap: 10px;
        justify-content: space-around;
        margin-bottom: 10px;
    }

        .marker-popup .nato-options button {
            background: none;
            border: none;
            padding: 4px;
            border-radius: 6px;
            transition: background 0.2s ease;
        }

            .marker-popup .nato-options button:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

            .marker-popup .nato-options button img {
                width: 26px;
                height: 26px;
            }

    .marker-popup .btn {
        width: 100%;
        font-size: 13px;
        margin-top: 5px;
        border-radius: 6px;
        padding: 4px 8px;
    }

.marker-scroll-area {
    max-height: 100px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #6c757d #1e1e1e;
    margin-bottom: 8px;
}

    .marker-scroll-area::-webkit-scrollbar {
        width: 6px;
    }

    .marker-scroll-area::-webkit-scrollbar-track {
        background: #1e1e1e;
    }

    .marker-scroll-area::-webkit-scrollbar-thumb {
        background-color: #6c757d;
        border-radius: 3px;
    }
