/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 04 2025 | 06:16:40 */
.world-map-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.world-map {
    width: 100%;
    display: block;
}

.map-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff7000;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transform: translate(-50%, -50%);
}

#tooltip {
    position: absolute;
    padding: 6px 12px;
    background: black;
    color: white;
    font-size: 14px;
    border-radius: 6px;
    display: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1000;
}
