
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgba(50, 50, 50, 0.75);
    padding-top: 60px;
}
.modal-content {
    background-color: #5A0170;
    margin: 5% auto;
    padding: 20px;
    border: 3px solid #fac430;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.summary-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}
.summary-table th, .summary-table td {
    padding: 10px;
    border: 1px solid #fac430;
}