/* Single Park Map Container */
.hgc-single-park-map-wrap {
    width: 100%;
    margin: 0 auto;
}

.hgc-single-park-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Error message */
.hgc-single-park-map-error {
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

/* Popup Card Styling */
.hgc-single-mapcard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 4px;
}

.hgc-single-mapcard__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.hgc-single-mapcard__address {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hgc-single-mapcard__contact {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.hgc-single-mapcard__contact a {
    color: #95C120;
    text-decoration: none;
    transition: color 0.2s;
}

.hgc-single-mapcard__contact a:hover {
    color: #7a9e1a;
    text-decoration: underline;
}

.hgc-single-mapcard__contact strong {
    font-weight: 600;
    color: #333;
}

.hgc-single-mapcard__directions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.hgc-single-mapcard__directions a {
    display: inline-block;
    color: #fff;
    background-color: #95C120;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.hgc-single-mapcard__directions a:hover {
    background-color: #7a9e1a;
    text-decoration: none;
}


/* Leaflet Popup Customization */
.hgc-single-map-popup .leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}

.hgc-single-map-popup .leaflet-popup-content {
    margin: 12px 14px;
    line-height: 1.4;
}

.hgc-single-map-popup .leaflet-popup-tip {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}