/* =============================================
   NEW HOUSEHOLD ONBOARDING - FEEDBACK SUMMARY
   ============================================= */

.new_household_onboard-summary {
    padding: 32px 24px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    margin: 0 auto;
}

.new_household_onboard-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 24px;
    line-height: 1.3;
}

.new_household_onboard-family-summary {
    background: #f1f8e9;
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    line-height: 1.65;
    font-size: 1.05rem;
    color: #2e7d32;
    white-space: pre-line;           /* preserves line breaks */
}

.new_household_onboard-adjustment-text {
    text-align: left;
    line-height: 1.7;
    color: #424242;
    font-size: 1.02rem;
    margin: 24px 0 32px 0;
    padding: 0 8px;
}

/* Full-width button styling */
.new_household_onboard-continue-btn {
    height: 54px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    box-shadow: 0 3px 8px rgba(46, 125, 50, 0.25);
    margin-top: 12px;
    width: 100% !important;           /* Ensures full width */
}

/* Hover effect */
.new_household_onboard-continue-btn:hover {
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
}

/* Responsive adjustment */
@media (min-width: 480px) {
    .new_household_onboard-summary {
        padding: 40px 32px;
    }
}