/* Custom styles for PSAT Practice */

/*
 * Add top padding to body so content is not hidden behind the fixed-top navbar.
 * Increase the value slightly above the navbar height to ensure adequate spacing.
 */
body {
    padding-top: 70px;
}

.navbar {
    margin-bottom: 20px;
}

.question-card {
    margin-bottom: 20px;
}

.feedback {
    margin-top: 15px;
}

.feedback.correct {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
}

.feedback.incorrect {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
}