.wr-modal[hidden] { display: none; }
.wr-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wr-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}
.wr-modal__dialog {
    position: relative;
    background: #fff;
    max-width: 640px;
    width: 92%;
    max-height: 90vh;
    overflow: auto;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}
.wr-modal__close {
    position: absolute;
    top: .5rem;
    right: .75rem;
    background: none;
    border: 0;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
/* Formulier-elementen krijgen inline styles (zie modal.php / refunds.js); typografie laten we aan het thema. */
/* Hover kan niet inline; daarom hier, scoped op onze eigen knop. */
.wr-submit:hover { background: #1d4ed8; }
