.reason-container{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(1, 0, 0, 0.912);
    border-radius: 20px;
    padding: 10px;
    display: none;
}
.reason-question{
    position: absolute;
    width: 70%;
    left: 15%;
    top: 10%;
    text-align: center;
    color: white;
    font-size: 3vh;
    font-family: 'Roboto', cursive;
}
.reason-input{
    position: absolute;
    background-color: transparent;

    width: 60%;
    left: 20%;
    bottom: 60%;
    border: none;
    border-bottom: solid 1px aqua;
    outline: none;
    font-size: 2.5vh;
    color: white;
    font-family: 'Roboto', cursive;
}
.reason-reject{
    position: absolute;
    right: 20%;
    bottom: 35%;
    color: rgb(255, 101, 101);
    font-size: 3vh;
    font-family: 'Roboto', cursive;
    padding: 5px;
    border-radius: 15px;
    text-shadow: 0px 0px 20px white;;
}
.reason-reject:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    animation: uiPop 0.1s linear forwards;
    background-color: red;
    color: black;
}
.reason-submit{
    position: absolute;
    left: 20%;
    bottom: 35%;
    color: aqua;
    font-size: 3vh;
    font-family: 'Roboto', cursive;
    padding: 5px;
    border-radius: 15px;
    text-shadow: 0px 0px 20px white;;
}
.reason-submit:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    animation: uiPop 0.1s linear forwards;
    background-color: aqua;
    color: black;
}
.reason-assurance{
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    bottom: 7%;
    color: rgb(199, 199, 199);
    font-size: 1.6vh;
    font-family: 'Roboto', cursive;
}
.reason-noshow{
    position: absolute;
    font-size: 2vh;
    color: white;
    font-family: 'Roboto', cursive;
    bottom: 20%;
    width: 80%;
    text-align: center;
}
.checkmark-container{
    position: absolute;
    bottom: -50%;
    left: 70%;
}
.checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    border: solid 1px white;
}
.checkmark:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    animation: uiPop 0.1s linear forwards;
}
.checkmark:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: var(--display, none);
}