.analyze-header-diagram-read-practice-tasks{

}

#diagnostic_test_polar_area_chart {
    display: flex;
    /*background: #3d366d;*/
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
}

.parent-wrapper {
    display: flex;
    /*background: #3d366d;*/
    flex-flow: column;
    gap: 5px;
}

.child-question-index {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    color: #000;
    padding: 10px;
    height: 30px;
    /*background: #3d366d ;*/
}

.child-question {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 8px;
    color: #565656;
    padding: 10px;
    height: 30px;

}

.correct-question {
    background: rgb(55, 163, 142);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

.incorrect-question {
    background: #f18179 ;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

.correct-question:hover,
.incorrect-question:hover {
    opacity: 0.8;
}