:root {
    --quiz-title-font: "IBM Plex Sans Condensed";
    --quiz-body-font: "Roboto";
    --quiz-background-color: #1c2e30;
    --quiz-background-color2: #abc7ca;
    --quiz-title-color: #e9742b;
    --quiz-text-color: black;
    --quiz-container-bgcolor: white;
    --quiz-text-shadow: -1px -1px 0 #000,
                        1px -1px 0 #000,
                        -1px  1px 0 #000,
                        1px  1px 0 #000,
                        /* Create the shadow */
                        2px 2px 2px rgba(0, 0, 0, 0.5); /* Adjust color and blur to your preference */
}



@media (min-width: 0px)
{

   

    .quiz-demo {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }

    .quiz-btn {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        text-align: center;
        border-radius: 50%;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
    }
    
    #start-quiz-btn {
        font-size: 25px;
        height: 100px;
        width: 100px;
        transform: scale(var(--scale-factor));
        margin-top: 100px;
    }

    .quiz-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-family: var(--quiz-title-font);
        width: 100%;
        margin-bottom: 5px;
    }

    .logo-child {
        flex-grow: 1; /* Takes up the remaining space */
        margin-left: auto; /* Pushes the child to the center horizontally */
        display: none;
    }

    .logo-child img {
        border-radius: 20px;
    }

    .quiz-header h3 {
        font-size: 40px;
        font-weight: bold;
        color: var(--quiz-title-color);
        align-self: flex-end;
        margin-bottom: 0;
    }

    .overall-timer {
        height: 50px;
        width: 300px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-color: var(--quiz-container-bgcolor);
        border: black 1px solid;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
    }

    .overall-timer h1 {
        color: var(--quiz-text-color);
        font-weight: bold;
    }

    /* START CSS STYLING FOR QUIZ QUESTION COMPONENT */

     .blurText {
        filter:blur(0.5rem);
    }

    .problem {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    #fill-circle {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        right: 0;
        top: 50%;
        z-index: 1;
    }

    #puck {
        border-radius: 50%;
        height: 20px;
        width: 20px;
        background-color: #3498db;
        z-index: 2;
    }

    .question {
        display: flex;
        flex-direction: column;
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        padding: 30px;
        height: 400px;
        width: 100%;
        flex-grow: 1;
        position: relative;
    }

    #non-touch-next-q {
        position: absolute;
        top: 55%;
        left: 75%;
        height: 75px;
        font-size: 11px;
    }

    .question-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px;
    }

    .question-text p {
        font-size: 14px;
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .question-timer-text h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .choices {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 5%;
        flex-grow: 1;
    }

    .choice {
        display: flex;
    }

    .choice p {
        font-size: 14px;
    }

    .choice-img {
        height: 30px;
        width: 30px;
        margin-right: 50px;
        transform: scale(var(--scale-factor));
    }

    .choice-circle {
        position: relative;
        height: 30px;
        width: 30px;
        margin-right: 20px;
        border: solid 3px black;
        background-color: white;
        border-radius: 50%;
        transform: scale(var(--scale-factor));
    }

    .choice-fill {
        width: 0;
        height: 0;
        background-color: #3498db;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.1s ease-out, height 0.1s ease-out;
    }

    .choice-fill:hover {
        cursor: pointer;
    }

    .quiz-metrics {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    /* apply style to all direct children */
    .quiz-metrics > * {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-weight: bold;
        border: black 1px solid;
        padding: 5px 10px;
        box-shadow: 10px 5px 5px black;
        width: 33%;
        margin-right: 5px;
    }

    .quiz-metrics * h1 {
        font-size: 14px;
    }

    .quiz-metrics * p {
        margin-bottom: 5px;
        font-size: 11px;
    }

     /* FINISH CSS STYLING FOR QUIZ QUESTION COMPONENT */

    /* START QUIZ RESULTS PAGE STYLE */

    .quiz-demo-results {
        display: flex;
        flex-direction: column;
        color: var(--quiz-text-color);
        background-color: var(--quiz-background-color2);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 20px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        height: 550px;
        margin-top: 10px;
    }

    #reset-quiz-btn {
        height: 50px;
        width: 50px;
        align-self: flex-end;
        margin-right: 30px;
        transform: scale(var(--scale-factor));
    }

    #biok-quiz-btn {
        height: 50px;
        width: 50px;
        font-size: 9px;
        align-self: flex-end;
        margin-right: 30px;
        transform: scale(var(--scale-factor));
    }

    #apps-quiz-btn {
        height: 50px;
        width: 50px;
        align-self: flex-end;
        margin-right: 50px;
        transform: scale(var(--scale-factor));
        font-size: 11px;
    }

    .quiz-demo-metrics {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .quiz-demo-metrics .result-total-time, .result-score, .result-conf, .result-focus {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 200px;
        width: 40%;
    }

    .quiz-demo-metrics h1 {
        font-size: 20px;
    }

    .rz-gauge, .rz-arc-gauge {
        width: 200px;
        height: 200px;
    }


    /* slider style */
    .slider-track {
        position: relative; /* This enables absolute positioning for the child elements */
        width: 175px; /* This sets the width of the track to the full width of its container */
        height: 25px; /* This sets the height of the track */
        background-color: #ddd; /* This sets the background color of the track */
        border-radius: 10px; /* This makes the track corners rounded */
        margin-top: 70px;
    }
    
    .slider-thumb {
        position: absolute; /* This positions the thumb relative to the slider-track */
        top: 50%; /* This sets the top position of the thumb to 50% of the slider-track */
        transform: translate(-50%, -50%); /* This centers the thumb both horizontally and vertically */
        width: 50px; /* This sets the width of the thumb */
        height: 50px; /* This sets the height of the thumb */
        border-radius: 50%; /* This makes the thumb circular */
        box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional: adds a shadow for better visibility */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* thermometer style */

    .thermometer {
        position: relative; /* Needed to position the circle relative to the thermometer */
        width: 50px;
        height: 200px;
    }

    .thermometer-container {
        position: relative; /* Container for progress bar and circle */
        width: 50px; /* Width of the progress bar */
        height: 200px; /* Total height of the progress bar */
        background-color: white; /* Default color for unfilled part */
        border-radius: 25px; /* Rounded edges of the progress bar */
        overflow: hidden; /* Ensures fills don't spill out of the container */
    }
    
    .thermometer-bar {
        position: relative;
        bottom: 0; /* Aligns the progress bar at the bottom */
        width: 100%; /* Full width of the container */
        height: 100%; /* Full height of the container */
    }
    
    .thermometer-fill {
        position: absolute;
        bottom: 0; /* Starts filling from the bottom */
        width: 100%; /* Full width of the progress bar */
        text-align: center;
        padding-top: 10px;
    }
    
    .thermometer-circle {
        position: absolute; /* Absolute positioning relative to the thermometer-container */
        bottom: -25px; /* Half of the circle's height to move it outside the container. Adjust if circle size changes */
        left: 50%; /* Start at 50% from the left of the thermometer-container */
        width: 65px; /* Width of the circle */
        height: 65px; /* Height of the circle */
        background-color: red; /* Color of the circle */
        border-radius: 50%; /* Makes the div a circle */
        transform: translateX(-50%); /* Centers the circle horizontally */
        z-index: 2; /* Ensures the circle is above the other elements if needed */
    }

    .quiz-donut-chart {
        display: grid;
        place-items: center;
    }

    .quiz-donut-chart p, .quiz-donut {
        grid-area: 1 / 1;
        background-color: white;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
    }

    .quiz-donut {
        height: 200px;
        width: 200px;
    }

    .quiz-donut-chart p {
        margin-top: 70px;
        font-size: 24px;
        z-index: 100;
        box-shadow: none;
    }

    .question-list {
        position: relative;
        width: 700px; /* Example size */
        height: 190px; /* Example size */
        border-top-left-radius: 0; /* No rounding on the top-left corner */
        border-top-right-radius: 0; /* No rounding on the top-right corner */
        border-bottom-left-radius: 190px; /* Half-circle on the bottom-left corner */
        border-bottom-right-radius: 190px; /* Half-circle on the bottom-right corner */
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 20px;
        box-shadow: 10px 5px 5px black;
        margin-top: 80px;
    }

    .results-questions {
        display: none;
    }

    .q-result-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        padding-top: 20px;
    }

    .q-result-icon-correct, .q-result-icon-incorrect {
        font-size: 50px;
    }

    .q-result-icon-correct {
        color: green
    }

    .q-result-icon-incorrect {
        color: red;
    }

    .q-time {
        font-size: 20px;
    }

    .q-details-btn {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-size: 11px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        align-self: center;
    }
    /* END QUIZ RESULTS PAGE STYLE */

    /* start question details page style  */
    .questions-details {
        min-height: 100vh;
    }

    .questions-details .q-detail-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .questions-details .q-detail-header h1 {
        color: var(--quiz-title-color);
        font-weight: bold;
    }

    .questions-details .q-detail-header .q-result-icon-correct, .q-result-icon-incorrect {
        margin-left: 20px;
    } 

    .q-detail {
        display: flex;
        flex-direction: column;
        color: var(--quiz-text-color);
        background-color: var(--quiz-background-color2);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        padding: 10px;
        height: 450px;
        width: 100%;
        flex-grow: 1;
    }

    .q-detail-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .q-detail-text p {
        font-size: 12px;
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .q-detail-timer-text h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .q-detail-choices {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 15px;
        flex-grow: 1;
    }

    .q-detail-choice {
        display: flex;
        align-items: center;
    }

    .q-detail-choice-img {
        height: 15px;
        width: 15px;
        margin-right: 20px;
    }

    .banner-div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-div p {
        font-size: 11px;
    }

    .correct-banner, .incorrect-banner, .empty-banner {
        height: 25px;
        width: 65px;
        text-align: center;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
    }
    .correct-banner {
        background-color: #34A400;
    }
    .incorrect-banner {
        background-color: #FF0000;
    }
    .arrow-right-correct, .arrow-right-incorrect, .arrow-right-empty {
        margin-right: 0.5rem;
        margin-bottom: 0rem;
        height: 1rem;
        width: 0.75rem;
        transform: matrix(0.82, -0.41, 0.69, .4, -6, .55)
    }
    .arrow-right-correct {
        background: #34A400;
    }
    .arrow-right-incorrect {
        background: #FF0000;
    }

    .low {
        color: red;
    }

    .medium {
        color: yellow;
    }

    .high {
        color: green;
    }

    .q-detail-choice-p {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .q-choice-metrics {
        font-size: 10px;
        margin-left: 20px;
        color: var(--quiz-text-color);
        margin-bottom: 0px;
    }

    .q-details-charts {
        display: none;
        justify-content: space-around;
        margin-left: 60px;
        margin-top: 30px;
        margin-right: 30px;
    }

    .q-det-chart {
        background-color: white;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        width: 200px;
        height: 200px;
    }

    .q-detail-nav-btns {
        display: flex;
        flex-direction: column;
        margin-left: 60px;
        margin-top: 30px;
        margin-right: 30px;
    }

    .q-detail-switch-btns {
        display: flex;
        justify-content: space-between;
    }

    .q-detail-nav-btns button {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        transform: scale(var(--scale-factor));
    }

    .q-detail-back {
        align-self: center;
    }
/* start question details page style  */
    

    /*START STYLE DATA SCIENCE CHARTS*/

    #quiz-biokinetics-back {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        transform: scale(var(--scale-factor));
    }

    .data-charts {
        display: flex;
        flex-wrap: wrap;
    }

    .data-charts h1 {
        text-align: center;
        color: var(--quiz-title-color);
        font-size: 16px;
    }

    .selection-data {
        width: 300px;
    }

    .quiz-data-chart {
        height: 150px;
        width: 300px;
        padding-left: 5px;
        padding-right: 5px;
        background-color: white;
    }


    /*END STYLE DATA SCIENCE CHARTS*/
}



@media (min-width: 900px)
{

    .blurText {
        filter:blur(0.5rem);
    }

    .quiz-demo {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }

    .quiz-btn {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        text-align: center;
        border-radius: 50%;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
    }
    
    #start-quiz-btn {
        font-size: 25px;
        height: 100px;
        width: 100px;
        transform: scale(var(--scale-factor));
        margin-top: 100px;
    }

    .quiz-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-family: var(--quiz-title-font);
        width: 100%;
        margin-bottom: 5px;
    }

    .logo-child {
        flex-grow: 1; /* Takes up the remaining space */
        margin-left: auto; /* Pushes the child to the center horizontally */
        display: none;
    }

    .logo-child img {
        border-radius: 20px;
    }

    .quiz-header h3 {
        font-size: 40px;
        font-weight: bold;
        color: var(--quiz-title-color);
        align-self: flex-end;
        margin-bottom: 0;
    }

    .overall-timer {
        height: 50px;
        width: 300px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-color: var(--quiz-container-bgcolor);
        border: black 1px solid;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
    }

    .overall-timer h1 {
        color: var(--quiz-text-color);
        font-weight: bold;
    }

    .problem {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    #fill-circle {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        right: 0;
        top: 50%;
        z-index: 1;
    }

    #puck {
        border-radius: 50%;
        height: 20px;
        width: 20px;
        background-color: #3498db;
        z-index: 2;
    }

    .question {
        display: flex;
        flex-direction: column;
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        padding: 30px;
        height: 450px;
        margin-left: 60px;
        margin-right: 30px;
        flex-grow: 1;
        position: relative;
    }

    #non-touch-next-q {
        position: absolute;
        top: 53%;
        left: 80%;
    }

    .question-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
    }

    .question-text p {
        font-size: 20px;
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .question-timer-text h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .choices {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 5%;
        flex-grow: 1;
    }

    .choice {
        display: flex;
    }

    .choice-img {
        height: 30px;
        width: 30px;
        margin-right: 50px;
        transform: scale(var(--scale-factor));
    }

    .choice-circle {
        position: relative;
        height: 30px;
        width: 30px;
        margin-right: 50px;
        border: solid 3px black;
        background-color: white;
        border-radius: 50%;
        transform: scale(var(--scale-factor));
    }

    .choice-fill {
        width: 0;
        height: 0;
        background-color: #3498db;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.1s ease-out, height 0.1s ease-out;
    }

    .choice-fill:hover {
        cursor: pointer;
    }

    .quiz-metrics {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 300px;
    }

    /* apply style to all direct children */
    .quiz-metrics > * {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 20px;
        box-shadow: 10px 5px 5px black;
        width: 300px;
    }

    .quiz-metrics * h1 {
        font-size: 16px;
    }

    .quiz-metrics * p {
        margin-bottom: 5px;
        padding-left: 30px;
        font-size: 11px;
    }

    /* START QUIZ RESULTS PAGE STYLE */

    .quiz-demo-results {
        display: flex;
        flex-direction: column;
        color: var(--quiz-text-color);
        background-color: var(--quiz-background-color2);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 20px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        height: 550px;
        margin-top: 10px;
    }

    #reset-quiz-btn {
        height: 50px;
        width: 50px;
        align-self: flex-end;
        margin-right: 100px;
        transform: scale(var(--scale-factor));
    }

    #biok-quiz-btn {
        height: 50px;
        width: 50px;
        font-size: 9px;
        align-self: flex-end;
        margin-right: 100px;
        transform: scale(var(--scale-factor));
    }

    #apps-quiz-btn {
        height: 50px;
        width: 50px;
        align-self: flex-end;
        margin-right: 100px;
        transform: scale(var(--scale-factor));
    }

    .quiz-demo-metrics {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .quiz-demo-metrics .result-total-time, .result-score, .result-conf, .result-focus {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 25%;
    }

    .quiz-demo-metrics h1 {
        font-size: 20px;
    }

    .rz-gauge, .rz-arc-gauge {
        width: 200px;
        height: 200px;
    }


    /* slider style */
    .slider-track {
        position: relative; /* This enables absolute positioning for the child elements */
        width: 175px; /* This sets the width of the track to the full width of its container */
        height: 25px; /* This sets the height of the track */
        background-color: #ddd; /* This sets the background color of the track */
        border-radius: 10px; /* This makes the track corners rounded */
        margin-top: 70px;
    }
    
    .slider-thumb {
        position: absolute; /* This positions the thumb relative to the slider-track */
        top: 50%; /* This sets the top position of the thumb to 50% of the slider-track */
        transform: translate(-50%, -50%); /* This centers the thumb both horizontally and vertically */
        width: 50px; /* This sets the width of the thumb */
        height: 50px; /* This sets the height of the thumb */
        border-radius: 50%; /* This makes the thumb circular */
        box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional: adds a shadow for better visibility */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* thermometer style */

    .thermometer {
        position: relative; /* Needed to position the circle relative to the thermometer */
        width: 50px;
        height: 200px;
    }

    .thermometer-container {
        position: relative; /* Container for progress bar and circle */
        width: 50px; /* Width of the progress bar */
        height: 200px; /* Total height of the progress bar */
        background-color: white; /* Default color for unfilled part */
        border-radius: 25px; /* Rounded edges of the progress bar */
        overflow: hidden; /* Ensures fills don't spill out of the container */
    }
    
    .thermometer-bar {
        position: relative;
        bottom: 0; /* Aligns the progress bar at the bottom */
        width: 100%; /* Full width of the container */
        height: 100%; /* Full height of the container */
    }
    
    .thermometer-fill {
        position: absolute;
        bottom: 0; /* Starts filling from the bottom */
        width: 100%; /* Full width of the progress bar */
        text-align: center;
        padding-top: 10px;
    }
    
    .thermometer-circle {
        position: absolute; /* Absolute positioning relative to the thermometer-container */
        bottom: -25px; /* Half of the circle's height to move it outside the container. Adjust if circle size changes */
        left: 50%; /* Start at 50% from the left of the thermometer-container */
        width: 65px; /* Width of the circle */
        height: 65px; /* Height of the circle */
        background-color: red; /* Color of the circle */
        border-radius: 50%; /* Makes the div a circle */
        transform: translateX(-50%); /* Centers the circle horizontally */
        z-index: 2; /* Ensures the circle is above the other elements if needed */
    }

    .quiz-donut-chart {
        display: grid;
        place-items: center;
    }

    .quiz-donut-chart p, .quiz-donut {
        grid-area: 1 / 1;
        background-color: white;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
    }

    .quiz-donut {
        height: 200px;
        width: 200px;
    }

    .quiz-donut-chart p {
        margin-top: 70px;
        font-size: 24px;
        z-index: 100;
        box-shadow: none;
    }

    .question-list {
        position: relative;
        width: 700px; /* Example size */
        height: 190px; /* Example size */
        border-top-left-radius: 0; /* No rounding on the top-left corner */
        border-top-right-radius: 0; /* No rounding on the top-right corner */
        border-bottom-left-radius: 190px; /* Half-circle on the bottom-left corner */
        border-bottom-right-radius: 190px; /* Half-circle on the bottom-right corner */
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 20px;
        box-shadow: 10px 5px 5px black;
        margin-top: 80px;
    }

    .results-questions {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .question-list .q-prev-det {
        position: relative;
        display: inline-block;
        flex-direction: column-reverse;
        width: 50px;
        height: 50px;
    }

    .question-list .q {
        position: absolute;
        bottom: 10px; /* Adjust the value to position the children along the bottom arc */
        width: 30px; /* Example size */
        height: 30px; /* Example size */
        text-align: center;
        line-height: 30px; /* For vertical centering of the text */
    }

    #q-prev-1 {

    }

    #q-prev-2 {
        top: 70%;
        left: 10%
    }

    #q-prev-3 {
        top: 70%;
        left: 30%
    }

    #q-prev-4 {
        top: 70%;
        left: 50%
    }

    #q-prev-5 {
        left: 60%
    }

    #q1 {
        
        transform: scale(var(--scale-factor));
    }

    #q2 {
        
        transform: scale(var(--scale-factor));
    }

    #q3 {
        
        transform: scale(var(--scale-factor));
    }

    #q4 {
        
        transform: scale(var(--scale-factor));
    }

    #q5 {
        
        transform: scale(var(--scale-factor));
    }

    .preview-q-result {
        position: absolute;
        height: 325px;
        width: 300px;
        background-color: white;
        color: var(--quiz-text-color);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 20px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        z-index: 100;
    }

    #preview-q-1 {
        top: -700%;
        left: -275%;
    }

    #preview-q-2 {
        top: -950%;
        left: -275%;
    }

    #preview-q-3 {
        top: -950%;
        left: -275%;
    }

    #preview-q-4 {
        top: -950%;
        left: -275%;
    }

    #preview-q-5 {
        top: -700%;
        left: -275%;
    }

    .q-result-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        padding-top: 20px;
    }

    .q-result-icon-correct, .q-result-icon-incorrect {
        font-size: 50px;
    }

    .q-result-icon-correct {
        color: green
    }

    .q-result-icon-incorrect {
        color: red;
    }

    .q-time {
        font-size: 20px;
    }

    .q-prev-btns {
        display: flex;
        justify-content: space-around;
    }

    .q-details-btn {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-size: 11px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        align-self: center;
    }
    /* END QUIZ RESULTS PAGE STYLE */

    /* start question details page style  */
    .questions-details {
        min-height: 100vh;
    }

    .questions-details .q-detail-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .questions-details .q-detail-header h1 {
        color: var(--quiz-title-color);
        font-weight: bold;
    }

    .questions-details .q-detail-header .q-result-icon-correct, .q-result-icon-incorrect {
        margin-left: 20px;
    } 

    .q-detail {
        display: flex;
        flex-direction: column;
        color: var(--quiz-text-color);
        background-color: var(--quiz-background-color2);
        font-weight: bold;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        border-radius: 20px;
        padding: 30px;
        height: 200px;
        margin-left: 60px;
        margin-right: 30px;
        flex-grow: 1;
    }

    .q-detail-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .q-detail-text p {
        font-size: 12px;
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .q-detail-timer-text h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .q-detail-choices {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 15px;
        flex-grow: 1;
    }

    .q-detail-choice {
        display: flex;
        align-items: center;
    }

    .q-detail-choice-img {
        height: 15px;
        width: 15px;
        margin-right: 20px;
    }

    .banner-div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-div p {
        font-size: 11px;
    }

    .correct-banner, .incorrect-banner, .empty-banner {
        height: 25px;
        width: 65px;
        text-align: center;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
    }
    .correct-banner {
        background-color: #34A400;
    }
    .incorrect-banner {
        background-color: #FF0000;
    }
    .arrow-right-correct, .arrow-right-incorrect, .arrow-right-empty {
        margin-right: 0.5rem;
        margin-bottom: 0rem;
        height: 1rem;
        width: 0.75rem;
        transform: matrix(0.82, -0.41, 0.69, .4, -6, .55)
    }
    .arrow-right-correct {
        background: #34A400;
    }
    .arrow-right-incorrect {
        background: #FF0000;
    }

    .low {
        color: red;
    }

    .medium {
        color: yellow;
    }

    .high {
        color: green;
    }

    .q-detail-choice-p {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .q-choice-metrics {
        font-size: 10px;
        margin-left: 20px;
        color: var(--quiz-text-color);
        margin-bottom: 0px;
    }

    .q-details-charts {
        display: flex;
        justify-content: space-around;
        margin-left: 60px;
        margin-top: 30px;
        margin-right: 30px;
    }

    .q-det-chart {
        background-color: white;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        width: 200px;
        height: 200px;
    }

    .q-detail-nav-btns {
        display: flex;
        flex-direction: column;
        margin-left: 60px;
        margin-top: 30px;
        margin-right: 30px;
    }

    .q-detail-switch-btns {
        display: flex;
        justify-content: space-between;
    }

    .q-detail-nav-btns button {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        transform: scale(var(--scale-factor));
    }

    .q-detail-back {
        align-self: center;
    }
/* start question details page style  */
    

    /*START STYLE DATA SCIENCE CHARTS*/

    #quiz-biokinetics-back {
        color: var(--quiz-text-color);
        background-color: var(--quiz-container-bgcolor);
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        border: black 1px solid;
        padding: 10px 5px;
        box-shadow: 10px 5px 5px black;
        transform: scale(var(--scale-factor));
    }

    .data-charts {
        display: flex;
        flex-wrap: nowrap;
    }

        .data-charts h1 {
            text-align: center;
            color: var(--quiz-title-color);
            font-size: 16px;
        }

    .quiz-data-chart {
        height: 75px;
        width: 150px;
        padding-left: 5px;
        padding-right: 5px;
        background-color: white;
    }

    .selection-data {
        margin-right: 20px;
        border-right: 1px dotted;
    }

    /*END STYLE DATA SCIENCE CHARTS*/
}

@media (min-width: 1000px) {

    /*START STYLE DATA SCIENCE CHARTS*/

       .data-charts h1 {
           font-size: 20px;
       }

   .quiz-data-chart {
       height: 100px;
       width: 175px;
       padding-left: 5px;
       padding-right: 5px;
       background-color: white;
   }

   .selection-data {
       margin-right: 20px;
       border-right: 1px dotted;
   }

   /*END STYLE DATA SCIENCE CHARTS*/
}

@media (min-width: 1000px) {


   

    /*START STYLE DATA SCIENCE CHARTS*/

       .data-charts h1 {
           font-size: 20px;
       }

   .quiz-data-chart {
       height: 100px;
       width: 175px;
   }

   /*END STYLE DATA SCIENCE CHARTS*/
}

@media (min-width: 1100px) {

    /*START STYLE DATA SCIENCE CHARTS*/

       .data-charts h1 {
           font-size: 24px;
       }

   .quiz-data-chart {
       height: 125px;
       width: 200px;
   }

   /*END STYLE DATA SCIENCE CHARTS*/
}

@media (min-width: 1200px) {

    .logo-child {
        display: block;
    }

    #non-touch-next-q {
        position: absolute;
        top: 47%;
        left: 80%;
        height: 100px;
        font-size: 14px;
    }

    .question-list {
        margin-top: 50px;
    }

    .q-detail-text p {
        font-size: 20px;
    }

    .q-detail-timer-text h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .q-detail-choices {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 15px;
        flex-grow: 1;
    }

    .q-detail-choice {
        display: flex;
    }

    
    .q-detail-choice-p {
        font-size: 16px;
    }

    .q-choice-metrics {
        margin-left: 20px;
        color: var(--quiz-text-color);
        font-size: 16px;
    }


    .q-det-chart {
        background-color: white;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        width: 300px;
        height: 200px;
    }

     /*START STYLE DATA SCIENCE CHARTS*/

    .quiz-data-chart {
        height: 125px;
        width: 220px;
    }

    /*END STYLE DATA SCIENCE CHARTS*/
}

@media (min-width: 1300px) {

    .avg-conf-list {
        margin-top: 0;
    }

    .quiz-metrics * h1 {
        font-size: 20px;
    }

    .quiz-metrics * p {
        margin-bottom: 2px;
        font-size: 13px;
    }

    /*START STYLE DATA SCIENCE CHARTS*/

    .quiz-data-chart {
        height: 125px;
        width: 235px;
    }

    /*END STYLE DATA SCIENCE CHARTS*/

}

@media (min-width: 1400px) {

    #non-touch-next-q {
        position: absolute;
        top: 47%;
        left: 70%;
    }

    /*START STYLE DATA SCIENCE CHARTS*/

    .quiz-data-chart {
        height: 125px;
        width: 250px;
    }

    /*END STYLE DATA SCIENCE CHARTS*/

}

@media (min-width: 1500px) {


    #non-touch-next-q {
        position: absolute;
        top: 47%;
        left: 60%;
    }

    .q-detail {
        height: 300px;
    }

    .q-detail-choice-img {
        height: 30px;
        width: 30px;
        margin-right: 50px;
    }

    .banner-div p {
        font-size: 1.6rem;
    }

    .correct-banner, .incorrect-banner, .empty-banner {
        height: 2.25rem;
        width: 9rem;
    }
    .arrow-right-correct, .arrow-right-incorrect, .arrow-right-empty {
        margin-bottom: 0rem;
    }

    .q-detail-choice-p {
        font-size: 16px;
    }

    .q-choice-metrics {
        font-size: 16px;
    }

    .q-det-chart {
        width: 400px;
    }

    /*START STYLE DATA SCIENCE CHARTS*/

    .quiz-data-chart {
        height: 138px;
        width: 275px;
    }

    /*END STYLE DATA SCIENCE CHARTS*/

}

@media (min-width: 1600px) {

    .quiz-metrics * h1 {
        font-size: 26px;
    }

    .quiz-metrics * p {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .quiz-demo-results {
        height: 625px;
    }

    .quiz-demo-metrics h1 {
        font-size: 30px;
    }

    .rz-gauge, .rz-arc-gauge {
        width: 300px;
        height: 300px;
    }

    /* slider style */
    .slider-track {
        width: 250px; /* This sets the width of the track to the full width of its container */
    }

    .quiz-donut {
        height: 300px;
        width: 300px;
    }

    .quiz-donut-chart p {
        margin-top: 40px;
        font-size: 36px;
        z-index: 100;
        box-shadow: none;
    }

    .question-list {
        margin-top: 30px;
    }

    .q-detail {
        height: 400px;
    }

    .q-detail-choices {
        margin-top: 2.5%;
    }

    .q-detail-nav-btns button {
        font-size: 16px;
        height: 75px;
        width: 75px;
    }

    /*START STYLE DATA SCIENCE CHARTS*/

    .quiz-data-chart {
        height: 200px;
        width: 300px;
    }

    /*END STYLE DATA SCIENCE CHARTS*/

}
