/* Custom styles for Vanilla Blocks */
.p-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.p-modal__dialog {
    background: #fff;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
}
.p-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
