.dialog {
    position: fixed;
    top: 40%;
    left: 50%;
    width: 80%;
    height: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 900;
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: block;
}

.dialog-title{
    font-size: larger;
}

.dialog-content{
    font-size: medium;
}