/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/pages/locations.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
#serverslocation {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#serverslocation .serversmap-holder {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 90vw; /* Make the map container width responsive */
    display: flex;
    justify-content: center; /* Center the map horizontally */
}

#serverslocation #serversmap {
    position: relative;
    width: 100%;
    max-width: 821px; /* Limit the max width */
    margin-top: 30px;
    margin-bottom: 30px;
}

#serverslocation #serversmap img {
    width: 100%;
    opacity: 0.32;
}

#serverslocation #serversmap .servers-location-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#serverslocation #serversmap .servers-location-holder .server-marker {
    position: absolute;
    transition: transform 0.3s ease;
    transform-origin: center center;
    z-index: 20; 
}

#serverslocation #serversmap .servers-location-holder .server-marker .left-text,
#serverslocation #serversmap .servers-location-holder .server-marker .right-text {
    font-size: 16px;
    font-weight: 700;
    color: #6f7690;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: 20; 
}

#serverslocation #serversmap .servers-location-holder .server-marker .marker-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 20px;
    background-color: #3195ff;
    margin-right: 8px;
    margin-left: 8px;
    z-index: 15; /* Keep the marker icon above the background */
}

/* @media (max-width: 1000px) {
    #serverslocation .serversmap-holder {
        box-shadow: 0 0 55px rgba(0, 0, 0, 0.08);
        border-radius: 10px;
    }
} */

@media (max-width: 768px) {
    #serverslocation #serversmap .servers-location-holder .server-marker {
        font-size: 12px; /* Adjust label size for mobile */
        padding: 5px; /* Make labels more readable on small screens */
        width: 100px; /* Ensure markers fit within the smaller container */
    }

    #serverslocation #serversmap .servers-location-holder .server-marker .marker-icon {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    #serverslocation #serversmap .servers-location-holder .server-marker {
        font-size: 10px; /* Further adjust font size for very small screens */
        width: 80px; /* Allow more space for small screens */
    }

    #serverslocation #serversmap .servers-location-holder .server-marker .marker-icon {
        width: 8px;
        height: 8px;
    }
}


/* Mobile Layout for List of Locations */
.location-list {
    padding: 10px;
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-top: 0;
}

.location-item {
    border-bottom: 1px solid #e0e0e0;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item strong {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
}
