.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    font-family: Helvetica;
}

.modal-container {
    position: fixed;
    top: 10%;
    left: 19%;
    width: 60%;
    margin: auto;
    background-color: #fefefe;
    border-radius:24px;
}


.modal-header {
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: 8px 24px;
    height: unset;
}

/* Modal Content */
.modal-content {
    padding: 24px;
    max-height: 60vh;
    overflow-y: scroll;
}

.model-content p {
    font-size: 14px;
}


.modal-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
}


/* The Close Button */
.close {
    color: #000;
    float: right;
    font-size: 42px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 24px;
}

#closeBtn {
    border-radius: 24px;
}

#closeBtn:focus {
    outline: 3px solid black;
}

.modal-icon {
    margin-top: 16px;
    visibility: hidden;
}
