.modal {
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 200px;
    /* Location of the box */
    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 */
    color: black;
}

#messageModal {
    display: none;
    /* Hidden by default */
}

/* Modal Content */
.modal-content {
    background-color: snow;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    color: #1d4a62;
    overflow: auto;
}

.modal-content ul {
    width: 50%;
    margin: auto;
    font-size: 20px;
    /* padding: 30px; */
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content p {
    width: 70%;
    margin: auto;
    font-size: 20px;
    padding: 30px;
}


.modalLit {
    display: none;
}



/* lines 59 to 214 probably won't be needed */
/* #dropDowns {
    width: 100%;
    display: inline-block;
    height: 50px;
}

#companyDrop {
    width: 48%;
    display: inline-block;
    text-align: center;
}

#companyTitle {
    font: bold 24px arial;
    color: #1d4a62;
    display: inline-block;
}

#companySelectDiv {
    display: inline-block;
}

#userDrop {
    width: 48%;
    display: inline-block;
    text-align: center;
}

#userTitle {
    font: bold 24px arial;
    color: #1d4a62;
    display: inline-block;
}

#userSelectDiv {
    display: inline-block;
}

#subject {
    width: 100%;
    display: inline-block;
    height: 50px;
    text-align: center;
}

#subjectTitle {
    font: bold 24px arial;
    color: #1d4a62;
    display: inline-block;
    text-align: right;
    width: 9%;
}

#subjectLine {
    display: inline-block;
    width: 82%;
}

#message {
    width: 100%;
    display: inline-block;
}

#messageTitle {
    font: bold 24px arial;
    color: #1d4a62;
    display: inline-block;
    text-align: center;
    width: 100%;
}

#messageArea {
    display: inline-block;
    width: 100%;
}

#messageBody {
    resize: none;
    width: 92%;
    height: 300px;
    margin: 1% 4% 2% 4%;
}

#Checkbox {
    width: 48%;
    display: inline-block;
    text-align: center;
    color: #1d4a62;
    font: 16px arial;
}

#date {
    width: 48%;
    display: inline-block;
    text-align: center;
    color: #1d4a62;
    font: 16px arial;
}

#buttons {
    width: 100%;
    height: 50px;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 15px;
}

#delete {
    display: inline-block;
    width: 50%;
    text-align: right;
    padding-right: 10px;
}

#deleteButton {
    background-color: red;
    color: whitesmoke;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 40px;
    border-width: 0px;
}

#submit {
    display: inline-block;
    width: 40%;
    text-align: left;
    padding-left: 10px;
}

#postButton {
    background-color: green;
    color: whitesmoke;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 45px;
    border-width: 0px;
}

#shiftDiv {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#changeUser {
    background-color: purple;
    color: whitesmoke;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 45px;
    border-width: 0px;
} */