 #modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);

     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1000;
 }


 .modal-content {
     position: relative;
     background: #fff;
     border-radius: 8px;
     width: 90%;
     vertical-align: middle;
     max-width: 800px;
     max-height: 80%;
     display: flex;
     flex-direction: column;
     padding: 20px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 #acceptBtn {
    margin: auto;
 }

 .close-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 1.2rem;
     background: none;
     border: none;
     cursor: pointer;
 }

 .modal-body {
     overflow-y: auto;
     flex: 1;
     margin-bottom: 15px;
     line-height: 1.4rem;
 }

 .modal-body h1{
    text-align: center;
    margin: 10px 0px 10px 0px;
 }

 .modal-body p {
     margin-bottom: 10px;
 }

 .modal-footer {
     text-align: center;
 }

 .modal-footer button:disabled {
     background-color: #aaa;
     cursor: not-allowed;
 }

 ul {
     list-style-type: disc;
     padding-left: 40px;
 }