/* ==================== KORY'S VIEW — CLONED FROM MODERN WIZARD V2 ==================== */
/* This file is for Kory's View overrides only.
   Base styling comes from create-claim-v2.css (shared .v2-* classes).
   Add any Kory's View-specific customizations below. */

/* Marital status chips — fit all 6 options on one line */
.v3-marital-chips {
    flex-wrap: nowrap;
}
.v3-marital-chips .v2-chip span {
    padding: 8px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* ==================== STEP 3 SUMMARY GRID ==================== */
.v3-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-top: 6px;
}
.v3-summary-field {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.v3-summary-field.v3-summary-full {
    grid-column: 1 / -1;
}
.v3-summary-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.v3-summary-value {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
}

/* ==================== BENEFICIARY SUMMARY CARDS ==================== */
.v3-bene-summary-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: #fafafa;
}
.v3-bene-summary-card:last-child {
    margin-bottom: 0;
}
.v3-bene-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.v3-bene-rel-chip {
    font-size: 11px;
    color: #214A3E;
    background: #F4F0E9;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

/* ==================== READ-ONLY FINANCIAL SUMMARY ==================== */
.v3-financial-readonly {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 14px;
}
.v3-fin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
}
.v3-fin-row.v3-fin-subtotal {
    font-weight: 600;
    border-top: 1px solid #e5e7eb;
    padding-top: 8px;
    margin-top: 4px;
}
.v3-fin-row.v3-fin-total {
    font-weight: 700;
    font-size: 15px;
    border-top: 2px solid #1E6332;
    padding-top: 8px;
    margin-top: 6px;
}
.v3-fin-row.v3-fin-note {
    font-size: 11px;
    padding: 0 0 2px;
}

/* ==================== MOBILE SUMMARY ==================== */
@media (max-width: 768px) {
    .v3-summary-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
