.bg-white-300 {
    background: rgba(255, 255, 255, 0.3) !important;
}

.rounded-bottom-left {
    border-radius: 0;
    border-bottom-left-radius: .25rem !important;
}

.rounded-bottom-right {
    border-radius: 0;
    border-bottom-right-radius: .25rem !important;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

.choice-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
}

.choice-box input {
    margin-top: 5px;
}

.choice-box:hover {
    border-color: #888;
    background-color: #f9f9f9;
}

.choice-letter {
    font-weight: 600;
    width: 20px;
}

.free-response-input {
    width: 120px;
    height: 58px;
    border: 2px solid #222;
    border-radius: 8px;
    font-size: 1.35rem;
    text-align: center;
}

.free-response-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25);
    outline: none;
}

.answer-preview-box {
    min-height: 40px;
    font-size: 1.25rem;
}


.instructions-box {
    line-height: 1.6;
}

.sr-only {
    display: none;
}

td, th {
    text-align: center;
}

.spr-correct {
    width: 120px;
    height: 58px;
    border: 2px solid #80EF80;
    border-radius: 8px;
    font-size: 1.35rem;
    text-align: center;
}

.spr-incorrect {
    width: 120px;
    height: 58px;
    border: 2px solid #FF746C;
    border-radius: 8px;
    font-size: 1.35rem;
    text-align: center;
}

.mcq-correct {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid #80EF80;
    border-radius: 6px;
}

.mcq-incorrect {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid #FF746C;
    border-radius: 6px;
}

.mcq-neutral {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.rationale {
    font-size: 0.95rem;
}

table {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

th, td {
    padding-right: 25px;
    padding-bottom: 10px;
    text-align: left;
}

.choice-box p,
.mcq-correct p,
.mcq-incorrect p,
.mcq-neutral p {
    margin-bottom: 0;
}


.flagged {
    border: 2px solid #FF746C !important;
}

.answered {
    color: #4cbb4c !important;
}

.unanswered {
    color: #FF746C !important;
}

.current_question {
    color: #6c73ff !important;
}