/* Store Locator Goong Settings CSS */

.marker-icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.marker-icon-preview {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
}

.marker-icon-preview img {
    max-width: 100%;
    max-height: 100%;
}

.marker-icon-upload {
    margin-right: 5px !important;
}

.marker-icon-remove {
    color: #a00;
}

.marker-icon-remove:hover {
    color: #dc3232;
}


 .store-locator-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
        .store-locator-field-group {
            flex: 1;
            min-width: 300px;
        }
        .store-locator-map-container {
            flex: 2;
            min-width: 400px;
        }
        .store-coordinates {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .coordinate-field {
            flex: 1;
        }
        .coordinate-field input {
            width: 100%;
            background-color: #f8f8f8;
        }
        #map {
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .goong-autocomplete-container {
            position: relative;
            width: 100%;
        }
        .goong-autocomplete-results {
            position: absolute;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .goong-autocomplete-item {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
        }
        .goong-autocomplete-item:hover {
            background-color: #f5f5f5;
        }
        .goong-autocomplete-item .main-text {
            font-weight: bold;
        }
        .goong-autocomplete-item .secondary-text {
            font-size: 0.9em;
            color: #777;
        }