#gls-map-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

#gls-map-modal {
    width: 90%;
    height: 90%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

#gls-pickup-map {
    flex: 1;
    width: 100%;
    min-height: 300px;
}

.gls-marker-icon {
    background: none;
    border: none;
}

.gls-popup {
    margin-bottom: 8px;
    line-height: 1.5;
}

.gls-select-btn {
    margin-top: 6px;
    width: 100%;
    background: #003087;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
}

.gls-select-btn:hover {
    background: #002070;
}

@media (max-width: 600px) {
    #gls-pickup-map {
        min-height: 300px;
    }
}

/* Admin map overlay */
#gls-admin-map-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

#gls-admin-map-modal {
    width: 90%;
    height: 90%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

#gls-admin-pickup-map {
    flex: 1;
    width: 100%;
    min-height: 300px;
}
