#avp-dialog {
    background: #fff;
    padding: 2rem;
    /* border-radius: 12px; */
    text-align: center;
    max-width: 400px;
    border-radius: 12px;

    &::backdrop {
        backdrop-filter: blur(8px);
    }

    .avp-content {
        h2 {
            margin-top: 0;
        }

        & .button-wrapper {
            display: flex;
            white-space: nowrap;
            gap: 1rem;
            align-items: center;
            width: 100%;
            flex-direction: column;

            button {
                font-size: 16px;
                cursor: pointer;
                border-radius: 8px;

                &#avp-yes {
                    border-radius: 8px;
                    background-color: black;
                    color: #fff;
                }

                &#avp-no {
                    border: 1px solid black;
                }

            }
        }

    }


}