/* Custom styles for PSAT Practice */

/*
 * Ensure page content is not hidden under the fixed navbar.
 * The navbar height can vary slightly depending on Bootstrap
 * defaults and any custom styling. Setting a generous
 * top padding prevents the header from overlapping page
 * content on all pages.
 */
/*
 * 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;
}