.wbl-launcher {
    position: fixed;
    z-index: 99999;
}

.wbl-launcher[data-position="bottom-right"] {
    right: 20px;
    bottom: 20px;
}

.wbl-launcher[data-position="bottom-left"] {
    left: 20px;
    bottom: 20px;
}

.wbl-launcher[data-position="top-right"] {
    right: 20px;
    top: 20px;
}

.wbl-launcher[data-position="top-left"] {
    left: 20px;
    top: 20px;
}

.wbl-launcher__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wbl-color, #0a7cff);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.wbl-launcher__button:hover {
    filter: brightness(0.95);
}

.wbl-launcher__button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.7);
    outline-offset: 3px;
}

.wbl-launcher__icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.wbl-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 16px;
}

.wbl-modal[hidden] {
    display: none;
}

.wbl-modal__content {
    background: #fff;
    width: min(92vw, 980px);
    height: min(85vh, 720px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.wbl-modal__iframe {
    border: 0;
    width: 100%;
    flex: 1;
}

.wbl-modal__close {
    align-self: flex-end;
    border: none;
    background: transparent;
    font-size: 28px;
    padding: 8px 12px 0 12px;
    cursor: pointer;
}

.wbl-modal__footer {
    padding: 10px 16px 16px;
    text-align: right;
}

.wbl-modal__newtab {
    font-size: 14px;
    text-decoration: none;
}

body.wbl-modal-open {
    overflow: hidden;
}
