﻿/* CSP-safe helpers */
.is-hidden {
    display: none !important;
}

/* Fade helpers (optional, matches the original feel without inline styles) */
.fade-out {
    opacity: 0;
    transition: opacity .3s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity .3s ease;
}

/* Overall rating banner colours */
.quizRating.rating-neutral {
    background-color: #6c757d;
}
/* grey */
.quizRating.rating-green {
    background-color: #3bc57c;
}

.quizRating.rating-amber {
    background-color: #f58740;
}

.quizRating.rating-red {
    background-color: #ec2027;
}

/* Result cards colour bars */
.resultQuestion.greenAnswer {
    border-left: 6px solid #3bc57c;
}

.resultQuestion.amberAnswer {
    border-left: 6px solid #f58740;
}

.resultQuestion.redAnswer {
    border-left: 6px solid #ec2027;
}
