.wbk_confirmationPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbk_confirmationPopup__modal {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}

.wbk_confirmationPopup__closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    border: 1px solid #333;
    padding: 4px;
    border-radius: 50%;

    &:hover {
        opacity: 1;
        padding: 6px;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.wbk_confirmationPopup__content {
    margin-bottom: 32px;
}

.wbk_confirmationPopup__title {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.wbk_confirmationPopup__message {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.wbk_confirmationPopup__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.wbk_confirmationPopup__confirmButton {
}
