.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: fit-content;
    max-width: 720px;
}
.modal-content .modal-heading{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
button{
    border: none;
    outline: none;
    background-color: transparent;
}

.modal-content button[is="oveo-modal-exit-button"] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 18px;
    cursor: pointer;
}
.modal-content p {
    margin: 0;
}
