.bxcb-osm-wrapper {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.bxcb-osm-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.bxcb-osm-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.bxcb-osm-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.05);
}

.bxcb-osm-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

.bxcb-osm-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
}

.bxcb-osm-text {
    position: relative;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
}

.bxcb-osm-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: #0073aa;
    color: #fff;
}

.bxcb-osm-button:hover,
.bxcb-osm-button:focus {
    background-color: #005b86;
}

