/* ONHYM Maps Platform — Shortcode wrapper styles
 * Applied to the host WordPress page (outside the iframe).
 * The iframe itself is styled by the GIS bundle CSS.
 */

.onhym-maps-platform-wrapper {
    display: block;
    width: 100%;
    box-sizing: border-box;
    line-height: 0; /* collapse inline whitespace */
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5; /* shown while iframe loads */
}

.onhym-maps-platform-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Responsive: on small screens cap height to viewport height */
@media (max-width: 767px) {
    .onhym-maps-platform-wrapper iframe {
        height: 100svh !important;
    }
}

/* Error notice shown to admins when map id is unknown */
.onhym-maps-platform-error {
    padding: 12px 16px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 2px;
    font-size: 0.9rem;
    color: #5a4000;
}
