/* route_map.css
 * Golfasian itinerary route map styling. Matches the original Golfasian map look (green-trimmed
 * container, golf-ball destination pins, white routes) and adds flight + activity markers.
 * Namespaced .ga-* so it does not clash with online_itinerary.css.
 */

.ga-route-map {
    margin: 0 auto 30px auto;
    width: calc(100% - 2px);
    height: 640px;
    border-top: 5px solid #0f9449;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: #e9eef0;
    overflow: hidden;
}

.ga-map-empty {
    align-items: center;
    color: #555;
    display: flex;
    height: 100%;
    justify-content: center;
}

/* Destination pin (golf-ball icon, set inline by route_map.js) */
.ga-pin {
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

/* Golf / excursion activity markers */
.ga-map-activity {
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    height: 14px;
    width: 14px;
}

.ga-map-activity.golf {
    background: #0f9449;
    border: 2px solid #fff;
}

.ga-map-activity.excursion {
    background: #fff;
    border: 2px solid #0f9449;
}

/* Flight airplane marker */
.ga-map-plane { line-height: 0; }

.ga-map-plane-icon {
    display: block;
    line-height: 0;
    transform-origin: center center;
}

.ga-map-plane svg { filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.32)); }
.ga-map-plane circle { fill: #0f9449; }
.ga-map-plane path { fill: #ffffff; }

/* Popups */
.ga-map-popup { color: #222; min-width: 140px; padding: 2px 6px; }

.ga-map-popup h3 {
    color: #0f5f2f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.ga-map-popup p {
    color: #666;
    font-size: 12px;
    margin: 3px 0 0;
}
