.quiz-content{
    display: flex;
    width: 100%;
    height: 87vh;
    overflow-y: hidden;
    overflow-x: hidden;
}

.scoresBoard{
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #292f348b;
    z-index: 1;
    display: none;
}
 
.scoreSheet{
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    width: 50%;
    margin: auto;
    align-items: center;
}

.scorehead{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: green;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.qresults{
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    min-height: 400px;
    overflow-y: scroll;
}

tbody{
    border: 1px solid rgb(167, 166, 166);
}

th, td{
    padding: 15px;
    cursor: pointer;
    text-align: center;
}

td img{
    width: 30px;
    height: 30px;
}

td:nth-child(2){
    background-color: rgba(206, 208, 208, 0.588);
}

td:hover{
    background-color: rgba(206, 208, 208, 0.73);
}

td:nth-child(4){
    background-color: rgba(206, 208, 208, 0.588);
}

.scoresfooter{
    display: flex;
    gap: 10px;
}


.left-nav{
    display: flex;
    width: 18%;
    flex-direction: column;
    padding: 0px 0 0 10px;
    background-color: #292f34;
    gap: 10px;
}

.left-nav a{
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
    margin: 0 5px;
    border-top: 1px dashed #f45604;
    border-bottom: 1px dashed #f45604;
}

.act{
    background-color: #f45604;
    color: white;
}

.left-nav a:hover{
    text-decoration: none;
    color: white;
    background-color: #f45604;
}

.right-section{
    display: flex;
    flex-direction: column;
    width: 82%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    gap: 20px;
    padding: 20px 0;
}

.questions{
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: auto;
    background-color: white;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
}

.img-obj{
    display: flex;
    width: 80%;
    border-radius: 10px;
}

.img-obj img{
    display: flex;
    width: 80%;
    height: 230px;
    border-radius: 10px;
}

.Qnum{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f45604;
    color: white;
    font-size: 16px;
    font-weight: 800;
    margin: 5px 0;
    padding: 10px 20px;
    border-radius: 100%;
}

.qDetails{
    display: flex;
    width: 100%;
    flex-direction: column;
}

.question{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 10px 0;
    font-size: 24px;
    font-weight: 800;
}

.answers{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px;
    gap: 10px;
}

.answer{
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.answer .radioBtn{
    width: 20px;
    height: 20px;
}

.answer .textBtn{
    display: flex;
    width: 70%;
    background-color: #292f34;
    color: white;
    height: 40px;
    border: 0px;
    border-radius: 5px;
    padding: 2px 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.answer label{
    font-size: 18px;
    padding-top: 4px;
}

.footerBtn{
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.footerBtn button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f45604;
    margin: 2% 5%;
    border: 0;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    border-radius: 5px;
}

.footerBtn button:hover{
    text-decoration: none;
    color: white;
    background-color: #b94609;
}

.topBtns{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: none;
}

.topBtn{
    border-radius: 5px;
}


@media screen and (max-width: 423px) {
    .left-nav{
        display: none;
    }

    .right-section{
        width: 100%;
    }

    .topBtns{
        display: flex;
    }

    .scoreSheet{
        width: 95%;
    }
    
    .scorehead{
        padding: 10px;
    }
    
    .qresults{
        padding: 5px;
        flex-direction: column;
        gap: 20px;
        overflow-y: scroll;
    }

    th, td{
        padding: 5px;
        cursor: pointer;
        text-align: center;
    }
    
    td img{
        width: 25px;
        height: 25px;
    }
    
    .scoresfooter{
        display: flex;
        gap: 10px;
        padding: 10px 0;
    }
    
}