.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 60%;
    margin: 100px auto;
}

.modal-content #modal-table {
    width: 100%;
    margin-top: 20px;
}

.modal-content #modal-table table {
    width: 100%;
}

.modal-content #modal-table table thead th {
    background: #c0c0c0;
    padding: 4px 10px;
    font-size: 0.845em;
    color: #161616;
    text-align: center;
}

.modal-content #modal-table table tbody tr td {
    background-color:#EEEFF7;
    padding: 4px 10px;
    text-align: center;
    font-size: 0.845em;
}

.modal-content #modal-table table tbody tr:nth-of-type(even) td {
    background-color: #9AA2CF;
}

@media (max-width: 768px) {
    * {
        overflow: scroll;
      margin: 0;
      padding: 0;
    }

}  