.woo-widerruf-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.woo-widerruf-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.woo-widerruf-modal__dialog {
    position: relative;
    background: #fff;
    color: #0f172a;
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.woo-widerruf-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.75rem;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #475569;
    padding: 0.25rem 0.5rem;
}

.woo-widerruf-modal__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

body.woo-widerruf-no-scroll {
    overflow: hidden;
}

@media (max-width: 540px) {
    .woo-widerruf-modal__dialog {
        padding: 1.25rem 1rem;
    }
}
