/**
 * Hide pass/fail UI on Tutor LMS quizzes (student side).
 * Everything here targets stable Tutor 4 classes; rows that have no
 * distinguishing class ("Passing Grade", "Pass Marks") are handled by
 * hide-pass-fail.js instead.
 */

/* Quiz Summary: the Passed / Failed badge next to the score ring.
   The Pending badge (manual review awaiting) is intentionally kept. */
.tutor-quiz-summary .tutor-result-badge.passed,
.tutor-quiz-summary .tutor-result-badge.failed {
	display: none !important;
}

/* Attempt lists: Passed / Failed badges in the Result column.
   Pending (warning) badges stay visible. */
.tutor-quiz-item-result .tutor-badge-success,
.tutor-quiz-item-result .tutor-badge-error {
	display: none !important;
}

/* Attempts table: blank the "Result" column header without collapsing
   the grid layout. */
.tutor-quiz-attempts-header .tutor-quiz-attempts-header-item:last-child {
	visibility: hidden;
}
