/* /Components/Admin/Layout/AdminLayout.razor.rz.scp.css */
.nav-item[b-0a296855kv] {
    @apply flex items-center px-3 py-2 text-sm font-medium text-gray-700 rounded-lg hover:bg-gray-100 hover:text-gray-900 transition-colors;
}

    .nav-item.active[b-0a296855kv] {
        @apply bg-brand-50 text-brand-700;
    }

/* Fix SVG icon rendering */
.nav-item svg[b-0a296855kv] {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
/* /Components/PublicUser/Layouts/PublicUserLayout.razor.rz.scp.css */
/* ─── Top Navigation ─── */
.topnav[b-423xaybmpw] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 249, 246, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--sand-200);
}

.topnav-inner[b-423xaybmpw] {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topnav-left[b-423xaybmpw] {
    display: flex;
    align-items: center;
    gap: 36px;
}

.brand-vc[b-423xaybmpw] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-vc img[b-423xaybmpw] {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.brand-vc span[b-423xaybmpw] {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal-900);
    letter-spacing: -0.03em;
}

.tab-nav[b-423xaybmpw] {
    display: flex;
    gap: 4px;
    background: var(--sand-100);
    padding: 4px;
    border-radius: 12px;
}

.tab-nav-item[b-423xaybmpw] {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-500);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-nav-item i[b-423xaybmpw] { font-size: 12px; }

.tab-nav-item:hover[b-423xaybmpw] {
    color: var(--charcoal-800);
    background: rgba(255, 255, 255, 0.5);
}

.tab-nav-item.active[b-423xaybmpw] {
    background: white;
    color: var(--teal-700);
    box-shadow: var(--shadow-sm-warm);
}

.topnav-right[b-423xaybmpw] {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* ─── Icon Button (bell, etc.) ─── */
.icon-btn-vc[b-423xaybmpw] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--sand-200);
    border-radius: 50%;
    color: var(--charcoal-500);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.icon-btn-vc:hover[b-423xaybmpw] {
    border-color: var(--teal-400);
    color: var(--teal-600);
}

/* ─── Logout Button (rose pill, always visible in topnav) ─── */
.btn-logout[b-423xaybmpw] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: transparent;
    border: 1px solid var(--sand-200);
    border-radius: 100px;
    font-family: 'Figtree Variable', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--rose-500);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-logout:hover[b-423xaybmpw] {
    background: #fff1f2;
    border-color: var(--rose-500);
}

.btn-logout i[b-423xaybmpw] { font-size: 11px; }

.icon-btn-vc .dot[b-423xaybmpw] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    background: var(--rose-500);
    border-radius: 50%;
    border: 2px solid var(--sand-50);
}

/* ─── User Pill ─── */
.user-pill[b-423xaybmpw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    background: white;
    border: 1px solid var(--sand-200);
    border-radius: 100px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.user-pill:hover[b-423xaybmpw] { border-color: var(--teal-400); }

.user-avatar-sm[b-423xaybmpw] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--teal-400), var(--teal-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.user-pill-name[b-423xaybmpw] {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-800);
}

/* ─── User Dropdown ─── */
.user-dropdown[b-423xaybmpw] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm-vc);
    box-shadow: var(--shadow-lg-warm);
    min-width: 240px;
    z-index: 100;
    overflow: hidden;
    animation: dropdown-slide-down 0.15s ease-out;
}

.dropdown-header-vc[b-423xaybmpw] {
    padding: 14px 16px;
    border-bottom: 1px solid var(--sand-200);
}

.dropdown-name-vc[b-423xaybmpw] {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 2px;
}

.dropdown-email-vc[b-423xaybmpw] {
    font-size: 12px;
    color: var(--charcoal-500);
}

.dropdown-item-vc[b-423xaybmpw] {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--charcoal-700);
    cursor: pointer;
    transition: background 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.dropdown-item-vc:hover[b-423xaybmpw] { background: var(--sand-50); }

.dropdown-logout-vc[b-423xaybmpw] { color: var(--rose-500); }

.dropdown-divider-vc[b-423xaybmpw] { height: 1px; background: var(--sand-200); }

/* ─── Dropdown Backdrop (click-outside-to-close) ─── */
.dropdown-backdrop[b-423xaybmpw] {
    position: fixed;
    inset: 0;
    z-index: 49;
}

/* ─── Edit Name Modal ─── */
.modal-overlay-vc[b-423xaybmpw] {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.3);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-vc[b-423xaybmpw] {
    background: white;
    border-radius: var(--radius-vc);
    padding: 28px;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-lg-warm);
}

.modal-title-vc[b-423xaybmpw] {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 20px;
}

.modal-field-grid[b-423xaybmpw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.modal-field[b-423xaybmpw] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-field label[b-423xaybmpw] {
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal-500);
}

.modal-field input[b-423xaybmpw] {
    padding: 11px 14px;
    background: var(--sand-50);
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm-vc);
    font-family: inherit;
    font-size: 14px;
    color: var(--charcoal-900);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-field input:focus[b-423xaybmpw] {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.modal-actions-vc[b-423xaybmpw] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-cancel-vc[b-423xaybmpw] {
    padding: 10px 20px;
    background: var(--sand-100);
    color: var(--charcoal-700);
    border: none;
    border-radius: var(--radius-sm-vc);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-cancel-vc:hover[b-423xaybmpw] { background: var(--sand-200); }

.btn-save-vc[b-423xaybmpw] {
    padding: 10px 20px;
    background: var(--teal-600);
    color: white;
    border: none;
    border-radius: var(--radius-sm-vc);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-save-vc:hover[b-423xaybmpw] { background: var(--teal-500); }

/* ─── Footer ─── */
.footer-vc[b-423xaybmpw] {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--sand-200);
    font-size: 12px;
    color: var(--charcoal-400);
}

.footer-links-vc[b-423xaybmpw] { display: flex; gap: 20px; }

.footer-links-vc a[b-423xaybmpw] {
    color: var(--charcoal-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-vc a:hover[b-423xaybmpw] { color: var(--teal-600); }

/* ─── Typography: V5 Palette ─── */

/* Headings: Figtree (auto-rule -- no per-element classes needed in Razor) */
[b-423xaybmpw] h1,
[b-423xaybmpw] h2,
[b-423xaybmpw] h3,
[b-423xaybmpw] h4,
[b-423xaybmpw] h5 {
    font-family: 'Figtree Variable', system-ui, sans-serif;
    font-weight: 700;
}

/* Display elements assigned Figtree in V5 design spec */
[b-423xaybmpw] .brand-vc span,
.dropdown-name-vc[b-423xaybmpw],
.modal-title-vc[b-423xaybmpw] {
    font-family: 'Figtree Variable', system-ui, sans-serif;
}

/* Interactive elements assigned Figtree (weight 600) */
.user-pill-name[b-423xaybmpw],
.btn-save-vc[b-423xaybmpw],
.btn-cancel-vc[b-423xaybmpw] {
    font-family: 'Figtree Variable', system-ui, sans-serif;
    font-weight: 600;
}
/* /Components/PublicUser/Shared/PublicToastContainer.razor.rz.scp.css */
@keyframes toastSlideUp-b-yq4ybhsn69 {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .toast-item-vc[b-yq4ybhsn69] { animation: none !important; opacity: 1 !important; }
}

.toast-container-vc[b-yq4ybhsn69] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item-vc[b-yq4ybhsn69] {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid var(--sand-200);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    min-width: 280px;
    max-width: 360px;
    animation: toastSlideUp-b-yq4ybhsn69 0.25s ease-out both;
}

.toast-icon-wrap-vc[b-yq4ybhsn69] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.toast-icon-wrap-vc.success[b-yq4ybhsn69] {
    background: #d1fae5;
    color: #059669;
}

.toast-icon-wrap-vc.error[b-yq4ybhsn69] {
    background: #fef2f2;
    color: #dc2626;
}

.toast-icon-wrap-vc.warning[b-yq4ybhsn69] {
    background: #fef3c7;
    color: #92400e;
}

.toast-icon-wrap-vc.info[b-yq4ybhsn69] {
    background: #dbeafe;
    color: #1e40af;
}

.toast-body-vc[b-yq4ybhsn69] {
    flex: 1;
    min-width: 0;
}

.toast-title-success[b-yq4ybhsn69] {
    font-size: 14px;
    font-weight: 600;
    color: #065f46;
    line-height: 1.4;
    margin: 0;
}

.toast-title-error[b-yq4ybhsn69] {
    font-size: 14px;
    font-weight: 600;
    color: #991b1b;
    line-height: 1.4;
    margin: 0;
}

.toast-title-warning[b-yq4ybhsn69] {
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    line-height: 1.4;
    margin: 0;
}

.toast-title-info[b-yq4ybhsn69] {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    line-height: 1.4;
    margin: 0;
}

.toast-desc-vc[b-yq4ybhsn69] {
    font-size: 12px;
    color: var(--charcoal-500);
    margin-top: 2px;
    margin-bottom: 0;
    line-height: 1.4;
}

.toast-close-vc[b-yq4ybhsn69] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--charcoal-400);
    cursor: pointer;
    font-size: 11px;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
    padding: 0;
}

.toast-close-vc:hover[b-yq4ybhsn69] {
    background: var(--sand-100);
    color: var(--charcoal-600);
}
/* /Components/PublicUser/Shared/VerificationBanner.razor.rz.scp.css */
.verification-banner-vc[b-3f84yuw2ma] {
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
}

.verification-banner-vc.expired[b-3f84yuw2ma] {
    background: #fef2f2;
    border-bottom: 1px solid #fecaca;
}

.verification-icon-vc[b-3f84yuw2ma] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d97706;
    font-size: 14px;
}

.verification-banner-vc.expired .verification-icon-vc[b-3f84yuw2ma] {
    background: #fee2e2;
    color: #dc2626;
}

.verification-text-vc[b-3f84yuw2ma] {
    font-size: 14px;
    color: #92400e;
}

.verification-banner-vc.expired .verification-text-vc[b-3f84yuw2ma] {
    color: #991b1b;
}

.verification-text-vc strong[b-3f84yuw2ma] {
    font-weight: 600;
}

.btn-ghost-amber[b-3f84yuw2ma] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-sm-vc);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #b45309;
    cursor: pointer;
    min-height: 40px;
    transition: background 0.15s ease, color 0.15s ease;
}

.btn-ghost-amber:hover[b-3f84yuw2ma] {
    background: #fef3c7;
}

.btn-ghost-amber:disabled[b-3f84yuw2ma] {
    opacity: 0.6;
    cursor: not-allowed;
}

.verification-banner-vc.expired .btn-ghost-amber[b-3f84yuw2ma] {
    border-color: #fca5a5;
    color: #991b1b;
}

.verification-banner-vc.expired .btn-ghost-amber:hover[b-3f84yuw2ma] {
    background: #fee2e2;
}
/* /Pages/PublicUser/Profile.razor.rz.scp.css */
/* ─── Variation C Card Override ─── */
.card-vc[b-mmt8fcnoao] {
    background: white;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-vc);
    padding: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm-warm);
    transition: box-shadow 0.3s ease;
}

.card-vc:hover[b-mmt8fcnoao] { box-shadow: var(--shadow-md-warm); }

.card-label-vc[b-mmt8fcnoao] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree Variable', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal-500);
    margin: -28px -28px 20px -28px;
    padding: 13px 28px;
    background: var(--sand-100);
    border-bottom: 1px solid var(--sand-200);
    border-radius: var(--radius-vc) var(--radius-vc) 0 0;
}

.card-label-vc i[b-mmt8fcnoao] {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-100);
    border-radius: 8px;
    font-size: 12px;
    color: var(--teal-600);
}

/* ─── Profile Summary Card ─── */
.summary-avatar[b-mmt8fcnoao] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--teal-400), var(--teal-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
}

.summary-name-vc[b-mmt8fcnoao] {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-top: 12px;
}

.summary-email-vc[b-mmt8fcnoao] {
    font-size: 12px;
    color: var(--charcoal-500);
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.summary-badge-vc[b-mmt8fcnoao] {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
}

.summary-badge-family[b-mmt8fcnoao] {
    background: var(--warm-100);
    color: var(--charcoal-700);
}

.summary-badge-caregiver[b-mmt8fcnoao] {
    background: var(--teal-100);
    color: var(--teal-700);
}

.summary-location-vc[b-mmt8fcnoao] {
    font-size: 13px;
    color: var(--charcoal-500);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.summary-stats-vc[b-mmt8fcnoao] {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sand-200);
}

.stat-value-vc[b-mmt8fcnoao] {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal-900);
}

.stat-label-vc[b-mmt8fcnoao] {
    font-size: 11px;
    color: var(--charcoal-500);
    margin-top: 2px;
}

/* ─── Completion Tracker ─── */
.completion-header[b-mmt8fcnoao] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.completion-pct[b-mmt8fcnoao] {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-600);
}

.progress-track[b-mmt8fcnoao] {
    height: 8px;
    background: rgba(28, 25, 23, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-mmt8fcnoao] {
    height: 100%;
    background: var(--teal-500);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.checklist-vc[b-mmt8fcnoao] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.check-item-vc[b-mmt8fcnoao] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.check-item-done[b-mmt8fcnoao] { color: var(--charcoal-700); }
.check-item-pending[b-mmt8fcnoao] { color: var(--charcoal-400); }

.check-icon-vc[b-mmt8fcnoao] { font-size: 16px; flex-shrink: 0; }
.check-icon-done[b-mmt8fcnoao] { color: var(--green-500); }
.check-icon-pending[b-mmt8fcnoao] { color: var(--charcoal-300); }

/* ─── Feedback Card ─── */
.feedback-card-vc[b-mmt8fcnoao] {
    border-left: 3px solid var(--teal-500);
}

.feedback-question-vc[b-mmt8fcnoao] {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 4px;
}

.feedback-desc-vc[b-mmt8fcnoao] {
    font-size: 12px;
    color: var(--charcoal-500);
    line-height: 1.5;
    margin-bottom: 14px;
}

.feedback-textarea-vc[b-mmt8fcnoao] {
    width: 100%;
    min-height: 80px;
    padding: 12px 14px;
    background: var(--sand-50);
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm-vc);
    font-family: inherit;
    font-size: 13px;
    color: var(--charcoal-900);
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-textarea-vc[b-mmt8fcnoao]::placeholder { color: var(--charcoal-400); }

.feedback-textarea-vc:focus[b-mmt8fcnoao] {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-send-vc[b-mmt8fcnoao] {
    width: 100%;
    margin-top: 12px;
    padding: 11px;
    background: var(--teal-600);
    color: white;
    border: none;
    border-radius: var(--radius-sm-vc);
    font-family: 'Figtree Variable', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-send-vc:hover[b-mmt8fcnoao] { background: var(--teal-500); }

/* ─── Variation C Form Fields ─── */
.field-vc[b-mmt8fcnoao] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-vc label[b-mmt8fcnoao] {
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal-500);
}

/* InputText/InputSelect render <input>/<select> inside a child component — ::deep pierces the boundary */
.field-vc[b-mmt8fcnoao]  input,
.field-vc[b-mmt8fcnoao]  select {
    width: 100%;
    padding: 11px 14px;
    background: var(--sand-50);
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm-vc);
    font-family: inherit;
    font-size: 14px;
    color: var(--charcoal-900);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-vc[b-mmt8fcnoao]  input:focus,
.field-vc[b-mmt8fcnoao]  select:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* ─── Public Profile Specialization Accordion (V5 Variation C) ─── */
.acc-header-vc[b-mmt8fcnoao] {
    background: var(--sand-50);
    border: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
}

.acc-header-vc:hover[b-mmt8fcnoao] {
    background: var(--teal-50);
}

.acc-header-vc[aria-expanded="true"][b-mmt8fcnoao] {
    background: var(--teal-50);
}

.acc-item-pub[b-mmt8fcnoao] {
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm-vc);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.acc-item-pub.has-selection[b-mmt8fcnoao] {
    border-color: var(--teal-200);
    border-left: 3px solid var(--teal-500);
}

.acc-body-vc[b-mmt8fcnoao] {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.acc-body-vc.is-open[b-mmt8fcnoao] {
    max-height: 24rem; /* ~384px — sufficient for any specialization list */
    opacity: 1;
}

.acc-body-vc.is-closed[b-mmt8fcnoao] {
    max-height: 0;
    opacity: 0;
}

.acc-icon-vc[b-mmt8fcnoao] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    font-size: 13px;
    flex-shrink: 0;
}

.acc-title-vc[b-mmt8fcnoao] {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-700);
    font-family: 'Figtree Variable', system-ui, sans-serif;
}

.acc-count-badge[b-mmt8fcnoao] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 9999px;
    background: var(--teal-100);
    color: var(--teal-700);
    font-size: 11px;
    font-weight: 500;
}

.acc-chevron-vc[b-mmt8fcnoao] {
    color: var(--charcoal-400);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.acc-chevron-vc.is-open[b-mmt8fcnoao] {
    transform: rotate(180deg);
}

/* ─── Specialization Chip Pills (V5 design) ─── */
.chip-vc[b-mmt8fcnoao] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: white;
    border: 1.5px solid var(--sand-300);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal-600);
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.chip-vc:hover[b-mmt8fcnoao] {
    border-color: var(--teal-400);
    background: var(--teal-50);
    color: var(--teal-700);
}

.chip-vc.selected[b-mmt8fcnoao] {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25);
}

/* ─── Stagger Animations ─── */
@keyframes fadeInUp-b-mmt8fcnoao {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.stagger-1[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.1s both; }
.stagger-2[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.15s both; }
.stagger-3[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.2s both; }
.stagger-4[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.25s both; }
.stagger-r1[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.2s both; }
.stagger-r2[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.3s both; }
.stagger-r3[b-mmt8fcnoao] { animation: fadeInUp-b-mmt8fcnoao 0.5s ease 0.4s both; }

/* ─── Completion Tracker (V3 large % + V1 circles) ─── */
.completion-pct-lg[b-mmt8fcnoao] {
    font-family: 'Figtree Variable', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--teal-600);
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.progress-track-slim[b-mmt8fcnoao] {
    height: 6px;
    background: var(--sand-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-track-slim .progress-fill[b-mmt8fcnoao] {
    height: 100%;
    background: var(--teal-500);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.check-item-final[b-mmt8fcnoao] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-family: 'Noto Sans Variable', system-ui, sans-serif;
}

.check-circle[b-mmt8fcnoao] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
}

.check-circle-done[b-mmt8fcnoao] {
    background: #d1fae5;
    color: #059669;
}

.check-circle-pending[b-mmt8fcnoao] {
    background: var(--sand-100);
    color: var(--charcoal-400);
}

.check-text-done[b-mmt8fcnoao] { color: var(--charcoal-700); }
.check-text-pending[b-mmt8fcnoao] { color: var(--charcoal-400); }

/* ─── Typography: V5 Palette (display/interactive elements) ─── */
.summary-name-vc[b-mmt8fcnoao],
.stat-value-vc[b-mmt8fcnoao] {
    font-family: 'Figtree Variable', system-ui, sans-serif;
}

/* ─── Form Field Icons V4 ─── */
.field-icon-wrapper[b-mmt8fcnoao] {
    position: relative;
}

.field-icon-left[b-mmt8fcnoao] {
    position: absolute;
    left: 14px;
    inset-block: 0; /* top:0; bottom:0 — vertical centering */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 14px;
    color: var(--charcoal-400);
    transition: color 0.2s ease;
    z-index: 1;
}

.field-icon-left.icon-teal[b-mmt8fcnoao] {
    color: var(--teal-500);
}

.field-icon-right[b-mmt8fcnoao] {
    position: absolute;
    right: 14px;
    inset-block: 0; /* top:0; bottom:0 — vertical centering */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 11px;
    color: var(--charcoal-400);
    z-index: 1;
}

/* ::deep targets the <input>/<select> rendered by InputText/InputSelect child components */
[b-mmt8fcnoao] .field-input-icon {
    padding-left: 42px !important;
}

/* Remove native select arrow for fields with custom chevron */
[b-mmt8fcnoao] .field-input-icon.select-icon {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 36px !important;
}

/* Focus: transition left icon to teal — :has() content is not scoped by Blazor so no ::deep needed inside it */
.field-icon-wrapper:has(.field-input-icon:focus) .field-icon-left[b-mmt8fcnoao] {
    color: var(--teal-500);
}
