.hero {
    min-height: 55vh;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.85)),
        #1b263b;
}

/* Map markers: amber airport dots and navy cluster badges, brand colors.
   The compound selectors outrank Leaflet's `.leaflet-marker-icon { display:
   block }`, which loads after this file and would break the centering. */
.leaflet-marker-icon.airport-marker,
.leaflet-marker-icon.airport-cluster {
    display: flex;
    align-items: center;
    justify-content: center;
}

.airport-marker {
    background: #ffc107;
    color: #1b263b;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.airport-cluster {
    background: #1b263b;
    color: #ffc107;
    border: 2px solid #ffc107;
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

[data-autocomplete] .ac-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-top: 0.25rem;
    text-align: left;
}
