.world-map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.world-map {
    width: 100%;
    height: auto;
    opacity: 1;
    max-height: 500px;
    object-fit: contain;
}

.location-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #dc3545;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.location-point:hover {
    transform: scale(1.5);
}

.location-label {
    position: absolute;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    z-index: 10;
    background:transparent;
    padding: 2px 5px;
    border-radius: 3px;
}

.location-label:hover {
    color: #dc3545;
}

.location-info {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 300px;
    transform: translate(-50%, -110%);
    transition: opacity 0.3s ease;
}

/* Specific positioning for each location info */
#south-korea-info { top: 35%; left: 67%; }
#philippines-info { top: 68%; left: 64%; }
#bekasi1-info { top: 88%; left: 51%; }
#bekasi2-info { top: 86.5%; left: 51.5%; }
#jakarta-info { top: 86.5%; left: 50%; }

.location-info::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

.mobile-location-list {
    display: none;
    padding: 20px;
}

.mobile-location-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

@media (max-width: 768px) {
    .world-map-container {
        padding: 10px;
    }

    .location-points-mobile {
        margin-top: 20px;
    }

    .location-point, 
    .location-label {
        display: none;
    }

    .mobile-location-list {
        display: block !important;
    }

    .desktop-map-points {
        display: none;
    }
}
