.modifyModalBlur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
}

.modifyContainer {
    position: relative;
    margin: auto;
    top: 15%;
    width: 600px;
    height: 650px;
    background-color: gray;
    border-radius: 10px;
}


.exitContainer {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 2%;
    top: -35px;
    left: 560px;
    cursor: pointer;
}

.fa-window-close {
    color: gray;    
}

.modifyTabContainer {
    position: relative;
    top: -25px;
    width: 100%;
    height: 80px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    cursor: pointer;
}

.modifyTabLeft {
    display: flex;
    width: 50%;
    height: 100%;
    float: left;    
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-style: bold;
}
.modifyTabRight {
    display: flex;
    width: 50%;
    height: 100%;
    float: right;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-style: bold;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modifyContent {
    animation: 1s ease-out 0s 1 fadein;
    position: relative;
    top: -32px;
    width: 100%;
    height: 570px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.modifySelectedDate {
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
}


