/* BenefitFinder — minimal overrides on top of Bootstrap 5 */

/* Progress bar */
.progress-step {
    height: 6px;
    border-radius: 3px;
}

/* Benefit card eligible highlight */
.card-likely {
    border-left: 4px solid #198754;
}

.card-possible {
    border-left: 4px solid #ffc107;
}

.card-not-eligible {
    border-left: 4px solid #dee2e6;
}

/* Official URL badge */
.badge-official {
    font-size: 0.7rem;
}

/* Green dollar amounts throughout the results page */
.dollar-amount {
    color: #198754;
    font-weight: 600;
}

/* Suppress the focus ring Blazor adds to headings after enhanced navigation */
h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus {
    outline: none;
}

/* Placeholder text — lighter so it reads as a hint, not a pre-filled value */
.form-control::placeholder {
    color: #adb5bd;
    opacity: 1; /* override Firefox's default reduction */
}

/* Mobile: stack question buttons vertically */
@media (max-width: 576px) {
    .question-options .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
