.alertOverlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    background-color:ghostwhite;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 110px;
    width: 100%;
    margin-top: 0px;
    height: 80%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    border-top: 1px solid darkgray;
}

.overlay .header {
    position: absolute;
    top: 60px;
    left: 15px;
    font-size: 30px;
    color: black;
}

.textarea {
    position: absolute;
    top: 72px;
    left: 115px;
    color: black;
}


.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    padding: 8px;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
}

@media screen and (max-height: 450px) {
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
