/* Google Maps styling for company group page */

.map-box {
    margin-bottom: 135px;
    position: relative;
}

.map-box .map-img {
    width: 100%;
    height: auto;
    max-width: 724px;
    position: relative;
}

/* Google Maps container */
#google-map {
    width: 100%;
    height: 500px;
    max-width: 724px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Map controls styling */
#google-map .gmnoprint {
    border-radius: 8px;
}

/* Info window styling */
.gm-style .gm-style-iw {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.gm-style .gm-style-iw-d {
    overflow: hidden;
}

.gm-style .gm-style-iw-c {
    padding: 0;
    border-radius: 8px;
}

.gm-style .gm-style-iw-t::after {
    background: white;
}

/* Custom marker hover effect */
.gm-style .gm-style-iw-d {
    max-height: none !important;
}

/* Map loading state */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: #f5f5f5;
    border-radius: 10px;
    color: #666;
    font-size: 16px;
}

.map-loading::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #e3e3e3;
    border-top: 4px solid #004EAC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 900px) {
    .map-box {
        margin-bottom: 12vw;
    }
    
    #google-map {
        height: 60vw;
        max-height: 400px;
    }
    
    .map-loading {
        height: 60vw;
        max-height: 400px;
    }
}

 