html{
    font-size: 10px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.program-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    height: 100vh;
    padding: 5rem 2rem;
    display: none;
}
.program-modal .modal{
    /* overflow: visible; */
    margin: auto;
    padding: 1rem;
    border-radius: .5rem;
    background-color: white;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    min-width: 90%;
    max-height: 85vh;
}
.program-modal .modal-dialog{
    padding: 1rem 2rem;
    max-height: 82vh;
    box-shadow: rgba(33, 120, 192, 0.292) 0px 0.0625em 0.0625em, rgba(50, 90, 221, 0.502) 0px 0.125em 0.5em, rgba(16, 199, 219, 0.555) 0px 0px 0px 1px inset;
}
.program-modal .modal-content{
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}
.program-modal .modal-content .modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    /* border-bottom: solid 1px gray; */
    font-size: 2rem;
}
.program-modal .modal-content .modal-header button{
    background-color: red;
    color: white;
    border: none;
    border-radius: .5rem;
    padding: .5rem 1rem;
    font-size: 2rem;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    &:hover{
        cursor: pointer;
        background-color: gainsboro;
        color: red;
        scale: 1.1;
        translate: .3s;
    }  
}
.program-modal .modal-content .modal-body{
    max-height: 65vh;
    padding: .5rem;
    overflow:auto;
    position: relative;
}
.program-modal .modal-content .modal-body table{
    width: 100%;
    border-collapse: collapse;
}
.program-modal .modal-content .modal-body table td{
    text-align:left;
    border: solid 1px black;
    padding: .5rem 1rem;
    font-size: 1.5rem;
}
.program-modal .modal-content .modal-body table th{
    font-size: 2rem;
    padding: .5rem 1rem;
    text-align:center;
    border: solid 1px black;
    color: white;
    background-color: #23B7E5;
    position: sticky;
	position: -webkit-sticky;
    top:-1rem;
	z-index: 2;
}
.program-modal .modal-content .modal-body table tr:hover{
    background-color: pink;
}