#program-modal {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--white-color);
    z-index: 3;
    opacity: 30%;
    
}

.modal-wrapper{
    display: none;
}

#close-program-modal {
    color: var(--black-color);
    top: -8px;
    right: 21px;
    font-size: 40px;
    cursor: pointer;
}

#modal-panel {
    background-color: var(--white-color);
    top: 50px;
    left: 31%;
    padding: 32px;
    text-align: left;
    max-height: 600px;
    min-width: 560px;
    z-index: 15;
    width: 400px;
    font-size: var(--modal-font-size);
    overflow-y: scroll;
    font-family: "Comics";
}