/* /Components/Account/Pages/Login.razor.rz.scp.css */
.login-wrapper[b-zg64g9pb4p] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Sky Blue to Teal Gradient from the screenshot */
    background: linear-gradient(135deg, #53c6e2 0%, #3bb1ca 50%, #17a2b8 100%);
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

.login-card[b-zg64g9pb4p] {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: none;
    min-height: 600px;
}

.branding-side[b-zg64g9pb4p] {
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)), 
                linear-gradient(180deg, #53c6e2 0%, #17a2b8 100%);
}

.brand-logo-white[b-zg64g9pb4p] { width: 140px; }
.text-yellow[b-zg64g9pb4p] { color: #fdf100; }
.text-pink[b-zg64g9pb4p] { color: #e91e63; }

/* Pill-Shaped Form Elements */
.pill-input[b-zg64g9pb4p], .pill-group[b-zg64g9pb4p] {
    background-color: #f8f9fa;
    border-radius: 50px !important;
    border: 1px solid #dee2e6;
}

.pill-input[b-zg64g9pb4p] { padding: 12px 25px; }

.pill-group .form-control[b-zg64g9pb4p] {
    background-color: #f8f9fa;
    border: none;
    padding: 12px 0 12px 25px;
}

.pill-group .btn[b-zg64g9pb4p] {
    background-color: #f8f9fa;
    padding-right: 20px;
    border: none;
}

/* Vibrant Pink Button */
.btn-payce-pink[b-zg64g9pb4p] {
    background-color: #e91e63;
    color: white;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-payce-pink:hover[b-zg64g9pb4p] {
    background-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: white;
}

/* Blue Outline Passkey */
.btn-outline-passkey[b-zg64g9pb4p] {
    border: 2px solid #0033ad;
    color: #0033ad;
    border-radius: 50px;
    padding: 12px;
    font-weight: 700;
}

.btn-outline-passkey:hover[b-zg64g9pb4p] {
    background-color: #0033ad;
    color: white;
}

.divider hr[b-zg64g9pb4p] { border-top: 1px solid #eee; opacity: 1; }

/* Center and increase letter spacing for primary login button */
.btn-login-main[b-zg64g9pb4p] {
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Light gray outline and centered content for passkey button */
.btn-outline-passkey[b-zg64g9pb4p] {
    border-color: #d3d3d3 !important;
    color: #212529;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
/* /Components/Common/AdBanner.razor.rz.scp.css */
/* Dashboard ad banner.

   Deliberately quieter than the cards and account panels above it: a single tinted strip with one
   link. It is marketing sitting in the middle of someone's banking, and it should read as an aside,
   not compete with their balance. */

.ad-banner[b-kngvs5xvvy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--payce-teal, #17a2b8);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ad-banner-body[b-kngvs5xvvy] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;                 /* lets the headline ellipsis instead of stretching the strip */
}

.ad-banner-eyebrow[b-kngvs5xvvy] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--payce-teal, #17a2b8);
}

.ad-banner-headline[b-kngvs5xvvy] {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2d3d;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ad-banner-headline:hover[b-kngvs5xvvy],
.ad-banner-headline:focus-visible[b-kngvs5xvvy] {
    color: var(--payce-pink, #e91e63);
    text-decoration: underline;
}

.ad-banner-close[b-kngvs5xvvy] {
    margin-left: auto;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    line-height: 1;
    font-size: 1.15rem;
    color: #8a97a8;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.ad-banner-close:hover[b-kngvs5xvvy],
.ad-banner-close:focus-visible[b-kngvs5xvvy] {
    color: #1f2d3d;
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 575.98px) {
    .ad-banner-headline[b-kngvs5xvvy] { white-space: normal; }   /* on a phone, wrap rather than truncate */
}
/* /Components/Common/CategoryIcon.razor.rz.scp.css */
/* Base icon container */
.category-icon[b-farzercd18] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.category-icon svg[b-farzercd18] {
    width: 100%;
    height: 100%;
}

/* Size variants */
.category-icon-sm[b-farzercd18] { width: 32px; height: 32px; padding: 6px; }
.category-icon-md[b-farzercd18] { width: 40px; height: 40px; padding: 8px; }
.category-icon-lg[b-farzercd18] { width: 48px; height: 48px; padding: 10px; }

/* Category color themes */
.cat-shopping[b-farzercd18]      { background-color: #ede9fe; color: #7c3aed; }
.cat-groceries[b-farzercd18]     { background-color: #d1fae5; color: #059669; }
.cat-gas[b-farzercd18]           { background-color: #fef3c7; color: #d97706; }
.cat-entertainment[b-farzercd18] { background-color: #fce7f3; color: #db2777; }
.cat-dining[b-farzercd18]        { background-color: #ffedd5; color: #ea580c; }
.cat-payment[b-farzercd18]       { background-color: #dbeafe; color: #2563eb; }
.cat-travel[b-farzercd18]        { background-color: #e0f2fe; color: #0284c7; }
.cat-utilities[b-farzercd18]     { background-color: #f1f5f9; color: #475569; }
.cat-healthcare[b-farzercd18]    { background-color: #fee2e2; color: #ef4444; }
.cat-other[b-farzercd18]         { background-color: #f3f4f6; color: #6b7280; }
/* /Components/Common/CookieConsentBanner.razor.rz.scp.css */
/* Cookie Consent Banner — Barbados DPA 2019 & EU GDPR compliant */
/* Matches Payce palette: Montserrat, pill buttons, teal/pink accents, glass-morphism */

.consent-banner[b-qfbuvq3ltl] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 3px solid #17a2b8;
    padding: 1.25rem 2rem;
    font-family: 'Montserrat', sans-serif;
    animation: slideUp-b-qfbuvq3ltl 0.4s ease-out;
}

@keyframes slideUp-b-qfbuvq3ltl {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.consent-content[b-qfbuvq3ltl] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.consent-text[b-qfbuvq3ltl] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.6;
}

.consent-text i[b-qfbuvq3ltl] {
    font-size: 1.5rem;
    color: #53c6e2;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.consent-text strong[b-qfbuvq3ltl] {
    color: #ffffff;
    font-weight: 700;
}

.consent-text > div > strong:first-child[b-qfbuvq3ltl] {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.consent-text p[b-qfbuvq3ltl] {
    margin: 0;
    color: #94a3b8;
}

.consent-link[b-qfbuvq3ltl] {
    color: #53c6e2;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.consent-link:hover[b-qfbuvq3ltl] {
    color: #7dd3fc;
}

.consent-actions[b-qfbuvq3ltl] {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-btn-primary[b-qfbuvq3ltl] {
    background-color: #e91e63;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consent-btn-primary:hover[b-qfbuvq3ltl] {
    background-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.consent-btn-secondary[b-qfbuvq3ltl] {
    background: transparent;
    color: #94a3b8;
    border: 1.5px solid #334155;
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consent-btn-secondary:hover[b-qfbuvq3ltl] {
    border-color: #53c6e2;
    color: #53c6e2;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .consent-banner[b-qfbuvq3ltl] {
        padding: 1rem 1.25rem;
    }

    .consent-content[b-qfbuvq3ltl] {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .consent-text[b-qfbuvq3ltl] {
        flex-direction: column;
        align-items: center;
    }

    .consent-text i[b-qfbuvq3ltl] {
        display: none;
    }

    .consent-actions[b-qfbuvq3ltl] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Common/Modal.razor.rz.scp.css */
/* Overlay — covers entire viewport */
.payce-modal-overlay[b-655s9d53ur] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    overflow-y: auto;
}

/* Backdrop — semi-transparent blur */
.payce-modal-backdrop[b-655s9d53ur] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: modalFadeIn-b-655s9d53ur 0.2s ease-out;
}

/* Centering container */
.payce-modal-container[b-655s9d53ur] {
    display: flex;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Panel — the white card */
.payce-modal-panel[b-655s9d53ur] {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: modalSlideUp-b-655s9d53ur 0.25s ease-out;
}

/* Size variants */
.payce-modal-sm[b-655s9d53ur]   { max-width: 384px; }
.payce-modal-md[b-655s9d53ur]   { max-width: 448px; }
.payce-modal-lg[b-655s9d53ur]   { max-width: 512px; }
.payce-modal-xl[b-655s9d53ur]   { max-width: 576px; }
.payce-modal-full[b-655s9d53ur] { max-width: 672px; }

/* Top gradient accent line */
.payce-modal-accent[b-655s9d53ur] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17a2b8, #53c6e2, #17a2b8);
}

/* Header */
.payce-modal-header[b-655s9d53ur] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
}

.payce-modal-title[b-655s9d53ur] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Close button */
.payce-modal-close[b-655s9d53ur] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payce-modal-close svg[b-655s9d53ur] {
    width: 20px;
    height: 20px;
}

.payce-modal-close:hover[b-655s9d53ur] {
    color: #4b5563;
    background-color: #f3f4f6;
}

.payce-modal-close:focus[b-655s9d53ur] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.2);
}

/* Body */
.payce-modal-body[b-655s9d53ur] {
    padding: 0 1.5rem 1.5rem;
}

.payce-modal-body-no-header[b-655s9d53ur] {
    padding-top: 1.5rem;
}

/* Footer */
.payce-modal-footer[b-655s9d53ur] {
    background-color: rgba(249, 250, 251, 0.8);
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
}

/* Animations */
@keyframes modalFadeIn-b-655s9d53ur {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modalSlideUp-b-655s9d53ur {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* /Components/Common/TabContainer.razor.rz.scp.css */
.tab-container[b-k781os4prx] {
    width: 100%;
}

/* Nav wrapper holds tabs + indicator */
.tab-nav-wrapper[b-k781os4prx] {
    position: relative;
    border-bottom: 1px solid #dee2e6;
}

.tab-nav[b-k781os4prx] {
    display: flex;
    gap: 0.25rem;
}

/* Tab button */
.tab-button[b-k781os4prx] {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button:hover[b-k781os4prx] {
    color: #374151;
    background-color: #f9fafb;
}

.tab-button:focus[b-k781os4prx] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.2);
}

.tab-button.active[b-k781os4prx] {
    color: #17a2b8;
    font-weight: 600;
}

/* Tab label */
.tab-label[b-k781os4prx] {
    font-weight: 500;
}

.tab-button.active .tab-label[b-k781os4prx] {
    font-weight: 600;
}

/* Tab icon */
.tab-icon[b-k781os4prx] {
    margin-right: 0.5rem;
}

/* Tab badge */
.tab-badge[b-k781os4prx] {
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

/* Animated underline indicator */
.tab-indicator[b-k781os4prx] {
    position: absolute;
    bottom: 0;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #17a2b8, #53c6e2);
    transition: all 0.3s ease-out;
}

/* Tab content area */
.tab-content[b-k781os4prx] {
    margin-top: 1.5rem;
}
/* /Components/Common/TransactionAuthDialog.razor.rz.scp.css */
.txnauth-body[b-4ctalosthb] {
    padding: .25rem 0;
}

.txnauth-context[b-4ctalosthb] {
    font-size: .95rem;
    color: #343a40;
    margin-bottom: .5rem;
}

.txnauth-target[b-4ctalosthb] {
    font-size: .85rem;
    color: #6c757d;
    margin-bottom: .75rem;
}

.txnauth-code[b-4ctalosthb] {
    font-size: 1.4rem;
    letter-spacing: .35rem;
    text-align: center;
    font-weight: 600;
}

.txnauth-dev[b-4ctalosthb] {
    margin-top: .5rem;
    font-size: .8rem;
    color: #adb5bd;
}
/* /Components/Layout/CardSelector.razor.rz.scp.css */
/* Scoped styles for the CardSelector island. These moved out of MainLayout.razor.css
   when the chip became its own component — Blazor CSS isolation scopes a .razor.css
   file to its own component, so the chip/dropdown rules must live here to apply. */

/* Divider rendered after the chip (also defined in MainLayout for its other dividers). */
.header-divider[b-9v1s9ghxn5] {
    width: 1px;
    height: 2rem;
    background-color: #cbd5e1;
}

/* --- Active Card/Account biscuit --- */
.active-card-chip[b-9v1s9ghxn5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.active-card-chip:hover[b-9v1s9ghxn5] {
    background: rgba(255, 255, 255, 0.9);
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chip-card-img[b-9v1s9ghxn5] {
    height: 2.5rem;
    width: auto;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.chip-acct-icon[b-9v1s9ghxn5] {
    font-size: 1.5rem;
    color: #64748b;
    padding: 0 0.25rem;
}

.chip-card-info[b-9v1s9ghxn5] {
    display: flex;
    flex-direction: column;
}

.chip-card-label[b-9v1s9ghxn5] {
    font-size: 0.5625rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chip-card-number[b-9v1s9ghxn5] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
}

/* --- Card selector: custom dropdown (opens on focus, like the profile menu) --- */
.card-select[b-9v1s9ghxn5] {
    position: relative;
}

/* The trigger keeps the .active-card-chip look; strip native <button> chrome. */
.card-select-trigger[b-9v1s9ghxn5] {
    font: inherit;
    text-align: left;
    gap: 0.75rem;
}

.card-select-caret[b-9v1s9ghxn5] {
    color: #64748b;
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.card-select:focus-within .card-select-caret[b-9v1s9ghxn5] {
    transform: rotate(180deg);
}

.card-select-menu[b-9v1s9ghxn5] {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.875rem;
    padding: 0.375rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    display: none;
    flex-direction: column;
    gap: 0.125rem;
    z-index: 30;
}

.card-select:focus-within .card-select-menu[b-9v1s9ghxn5] {
    display: flex;
}

.card-select-option[b-9v1s9ghxn5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.15s;
}

.card-select-option:hover[b-9v1s9ghxn5] {
    background-color: #f1f5f9;
}

.card-select-option.is-selected[b-9v1s9ghxn5] {
    background-color: #eff6ff;
}

/* Card-tier art (std / gold) to the left of each option. */
.option-card-img[b-9v1s9ghxn5] {
    height: 1.75rem;
    width: auto;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.option-label[b-9v1s9ghxn5] {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

.option-primary-badge[b-9v1s9ghxn5] {
    margin-left: auto;
    padding: 0.0625rem 0.4rem;
    font-size: 0.5625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #059669;
    background: #d1fae5;
    border-radius: 9999px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* === Stitch Design Layout Shell === */
.layout-shell[b-hxs090k5k4] {
    display: flex;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

/* --- Sidebar --- */
.sidebar[b-hxs090k5k4] {
    width: 264px;
    background: linear-gradient(180deg, #0099CC 0%, #003366 100%);
    display: flex;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    color: #fff;
    z-index: 15;                        /* stay above the navigation scrim (z-8) */
}

.sidebar-inner[b-hxs090k5k4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-logo[b-hxs090k5k4] {
    padding: 1.75rem 1.5rem 1.25rem;
}

/* Full-color brand mark sits on a clean white chip so it stays crisp against
   the dark cyan→navy sidebar gradient. */
.logo-img[b-hxs090k5k4] {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
    padding: 0.85rem 1rem;
    border-radius: 0.875rem;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.28);
}

/* Rainbow pattern border on right edge */
.pattern-border[b-hxs090k5k4] {
    width: 6px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, #FF3366, #FFCC00, #00CC99, #0099CC, #9933CC);
}

/* Sidebar bottom section (Settings, Logout) */
.sidebar-bottom[b-hxs090k5k4] {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-link[b-hxs090k5k4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.sidebar-link:hover[b-hxs090k5k4] {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sidebar-link-muted[b-hxs090k5k4] {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Main Region --- */
.main-region[b-hxs090k5k4] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    position: relative;
}

/* --- Top Bar / Header --- */
.top-bar[b-hxs090k5k4] {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.top-bar-title[b-hxs090k5k4] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.top-bar-spacer[b-hxs090k5k4] {
    flex: 1;
}

.top-bar-actions[b-hxs090k5k4] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Notification bell */
.notification-btn[b-hxs090k5k4] {
    position: relative;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 1.25rem;
}

.notification-btn:hover[b-hxs090k5k4] {
    color: #FF3366;
}

.notification-dot[b-hxs090k5k4] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #FF3366;
    border-radius: 50%;
}

/* Header divider */
.header-divider[b-hxs090k5k4] {
    width: 1px;
    height: 2rem;
    background-color: #cbd5e1;
}

/* User greeting */
.user-greeting[b-hxs090k5k4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.greeting-text[b-hxs090k5k4] {
    text-align: right;
}

.greeting-label[b-hxs090k5k4] {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.greeting-name[b-hxs090k5k4] {
    font-size: 0.875rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

/* Profile avatar */
.profile-menu[b-hxs090k5k4] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.avatar-ring[b-hxs090k5k4] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF3366, #f472b6);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.avatar-inner[b-hxs090k5k4] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF3366;
    font-size: 1.125rem;
}

/* Profile dropdown */
.profile-dropdown[b-hxs090k5k4] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    padding: 0.5rem;
    min-width: 10rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile-menu:focus-within .profile-dropdown[b-hxs090k5k4],
.profile-menu:hover .profile-dropdown[b-hxs090k5k4] {
    display: flex;
}

.profile-dropdown[b-hxs090k5k4]  .dropdown-item {
    color: #334155;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.profile-dropdown[b-hxs090k5k4]  .dropdown-item:hover {
    background-color: #f1f5f9;
}

.profile-dropdown[b-hxs090k5k4]  .signout-item,
.profile-dropdown[b-hxs090k5k4]  .signout-item .btn-link {
    color: #ef4444;
}

.logout-form[b-hxs090k5k4] {
    display: inline-flex;
    align-items: center;
}

.profile-dropdown[b-hxs090k5k4]  .btn-link {
    color: inherit;
    text-decoration: none;
    background: none;
    border: none;
    box-shadow: none;
}

/* The active-card / dropdown biscuit styles moved to CardSelector.razor.css when the
   switcher became its own interactive component (CSS isolation scopes per component). */

/* --- Content --- */
.content[b-hxs090k5k4] {
    flex: 1;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4f8 100%);
    overflow-y: auto;
}

/* --- Navigation scrim (page-transition loading state) --- */
.nav-scrim[b-hxs090k5k4] {
    position: fixed;                   /* viewport-relative so the spinner stays centred on screen */
    inset: 0;
    z-index: 8;                        /* above content; sidebar (z-15) + header (z-10) stay on top */
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(60% 60% at 50% 42%, rgba(255, 255, 255, 0.85), rgba(248, 250, 255, 0.72));
    backdrop-filter: blur(6px) saturate(1.1);
    -webkit-backdrop-filter: blur(6px) saturate(1.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.nav-scrim.is-active[b-hxs090k5k4] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

.ns-inner[b-hxs090k5k4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}
.nav-scrim.is-active .ns-inner[b-hxs090k5k4] { animation: ns-pop-b-hxs090k5k4 0.4s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* Payce gradient ring spinner */
.ns-ring[b-hxs090k5k4] {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, #0099CC, #FF3366, #e91e63, #0099CC);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
    animation: ns-spin-b-hxs090k5k4 0.85s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(233, 30, 99, 0.25));
}

.ns-label[b-hxs090k5k4] {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #64748b;
    padding-left: 0.28em;                /* optically centre the tracked text */
    animation: ns-fade-b-hxs090k5k4 1.6s ease-in-out infinite;
}

@keyframes ns-spin-b-hxs090k5k4 { to { transform: rotate(1turn); } }
@keyframes ns-pop-b-hxs090k5k4 {
    from { opacity: 0; transform: scale(0.94) translateY(6px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ns-fade-b-hxs090k5k4 { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .ns-ring[b-hxs090k5k4] { animation-duration: 1.4s; }
    .ns-label[b-hxs090k5k4], .nav-scrim.is-active .ns-inner[b-hxs090k5k4] { animation: none; }
    .nav-scrim[b-hxs090k5k4] { transition: opacity 0.15s ease; }
}


/* --- Footer --- */
.footer-bar[b-hxs090k5k4] {
    padding: 1.5rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    flex-shrink: 0;
}

.footer-copy[b-hxs090k5k4] {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .sidebar[b-hxs090k5k4] {
        width: 80px;
    }
    .sidebar-logo[b-hxs090k5k4] { display: none; }
    .sidebar-link-label[b-hxs090k5k4] { display: none; }
    .sidebar-link[b-hxs090k5k4] { justify-content: center; padding: 0.75rem; }
    .top-bar[b-hxs090k5k4] { padding: 0 1.5rem; }
    .content[b-hxs090k5k4] { padding: 1.5rem; }
}

@media (max-width: 768px) {
    .layout-shell[b-hxs090k5k4] {
        flex-direction: column;
    }
    .sidebar[b-hxs090k5k4] {
        width: 100%;
        height: auto;
        flex-direction: row;
        position: static;
    }
    .sidebar-inner[b-hxs090k5k4] {
        flex-direction: row;
        align-items: center;
    }
    .pattern-border[b-hxs090k5k4] {
        display: none;
    }
    .sidebar-bottom[b-hxs090k5k4] { display: none; }
    .header-divider[b-hxs090k5k4] { display: none; }
    .greeting-text[b-hxs090k5k4] { display: none; }
    .top-bar[b-hxs090k5k4] { height: auto; padding: 0.75rem 1rem; }
}

#blazor-error-ui[b-hxs090k5k4] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-hxs090k5k4] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* === Stitch Sidebar Navigation === */
.sidebar-nav[b-34pxi1sv21] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1rem;
}

.sidebar-nav[b-34pxi1sv21]  .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s, color 0.15s;
}

.sidebar-nav[b-34pxi1sv21]  .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sidebar-nav[b-34pxi1sv21]  .nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-nav[b-34pxi1sv21]  .nav-item i {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
}

.sidebar-nav[b-34pxi1sv21]  .nav-item-label {
    white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .sidebar-nav[b-34pxi1sv21]  .nav-item-label {
        display: none;
    }
    .sidebar-nav[b-34pxi1sv21]  .nav-item {
        justify-content: center;
        padding: 0.75rem;
    }
    .sidebar-nav[b-34pxi1sv21] {
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar-nav[b-34pxi1sv21] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.5rem;
    }
    .sidebar-nav[b-34pxi1sv21]  .nav-item {
        flex: 0 0 auto;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    .sidebar-nav[b-34pxi1sv21]  .nav-item i {
        font-size: 1rem;
    }
}
/* /Components/Layout/PageTitleText.razor.rz.scp.css */
/* The title re-keys per route, so each new page title animates in — a subtle
   fade + rise that settles its letter-spacing, giving the header a sense of place. */
.pt-title[b-7osi5sj8ho] {
    display: inline-block;
    animation: pt-in-b-7osi5sj8ho 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform, opacity;
}

@keyframes pt-in-b-7osi5sj8ho {
    0% {
        opacity: 0;
        transform: translateY(0.5rem);
        letter-spacing: 0.06em;
        filter: blur(3px);
    }
    60% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.01em;
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pt-title[b-7osi5sj8ho] { animation: none; }
}
/* /Components/LoadingScrim.razor.rz.scp.css */
/* Fullscreen Loading Scrim — reusable overlay with spinner and text */
.loading-scrim[b-cjdfo1a0hf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
}

.spinner-container[b-cjdfo1a0hf] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-text[b-cjdfo1a0hf] {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.loading-subtext[b-cjdfo1a0hf] {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.spinner-svg[b-cjdfo1a0hf] {
    animation: spin-b-cjdfo1a0hf 1s linear infinite;
    height: 56px;
    width: 56px;
    display: block;
}

.spinner-circle[b-cjdfo1a0hf] {
    opacity: 0.25;
    stroke: currentColor;
    stroke-width: 4;
}

.spinner-path[b-cjdfo1a0hf] {
    opacity: 0.75;
    fill: currentColor;
}

@keyframes spin-b-cjdfo1a0hf {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* /Components/PageLoader.razor.rz.scp.css */
/* Matches the active navigation scrim (MainLayout .nav-scrim.is-active) so page-level loading
   is visually identical to the tab-transition scrim. */
.page-loader[b-18t4xwt4hx] {
    position: fixed;
    inset: 0;
    z-index: 8;                        /* above content; sidebar (z-15) + header (z-10) stay on top */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(60% 60% at 50% 42%, rgba(255, 255, 255, 0.85), rgba(248, 250, 255, 0.72));
    backdrop-filter: blur(6px) saturate(1.1);
    -webkit-backdrop-filter: blur(6px) saturate(1.1);
    animation: pl-fadein-b-18t4xwt4hx 0.2s ease both;
}

.pl-inner[b-18t4xwt4hx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    animation: pl-pop-b-18t4xwt4hx 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pl-ring[b-18t4xwt4hx] {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, #0099CC, #FF3366, #e91e63, #0099CC);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
    animation: pl-spin-b-18t4xwt4hx 0.85s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(233, 30, 99, 0.25));
}

.pl-label[b-18t4xwt4hx] {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #64748b;
    padding-left: 0.28em;
    animation: pl-fade-b-18t4xwt4hx 1.6s ease-in-out infinite;
}

@keyframes pl-spin-b-18t4xwt4hx { to { transform: rotate(1turn); } }
@keyframes pl-fadein-b-18t4xwt4hx { from { opacity: 0; } to { opacity: 1; } }
@keyframes pl-pop-b-18t4xwt4hx {
    from { opacity: 0; transform: scale(0.94) translateY(6px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pl-fade-b-18t4xwt4hx { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .pl-ring[b-18t4xwt4hx] { animation-duration: 1.4s; }
    .pl-label[b-18t4xwt4hx], .pl-inner[b-18t4xwt4hx] { animation: none; }
}
/* /Components/Pages/Cpin.razor.rz.scp.css */
/* === Stitch Change PIN Content Styles === */
.cpin-content[b-6662h8v8df] {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 3rem;
}

/* --- Glass Card --- */
.cpin-card[b-6662h8v8df] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cpin-header[b-6662h8v8df] {
    padding: 2.5rem 2.5rem 0;
    text-align: center;
}

.cpin-icon[b-6662h8v8df] {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #FF3366, #e91e63);
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
}

.cpin-icon i[b-6662h8v8df] {
    font-size: 1.5rem;
    color: #fff;
}

.cpin-header h3[b-6662h8v8df] {
    font-weight: 800;
    font-size: 1.25rem;
    color: #0f172a;
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.cpin-header p[b-6662h8v8df] {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

.cpin-body[b-6662h8v8df] {
    padding: 2rem 2.5rem 2.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cpin-card[b-6662h8v8df] {
        border-radius: 1.25rem;
    }

    .cpin-header[b-6662h8v8df] {
        padding: 2rem 1.5rem 0;
    }

    .cpin-body[b-6662h8v8df] {
        padding: 1.5rem;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
/* === Stitch Dashboard Content Styles === */
.dashboard-content[b-69alckjtdc] {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 3rem;
}

/* --- Card Product Image Display --- */
/* Cap the card width so it doesn't span the whole column when the grid collapses
   to a single column (below xl), where .col-xl-5 becomes full width. */
.card-display-wrapper[b-69alckjtdc] {
    max-width: 420px;
    margin-inline: auto;
}

.stitch-card[b-69alckjtdc] {
    position: relative;
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.stitch-card:hover[b-69alckjtdc] {
    transform: scale(1.02);
}

.card-product-img[b-69alckjtdc] {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Stats Grid --- */
.stats-grid[b-69alckjtdc] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card[b-69alckjtdc] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stat-card-wide[b-69alckjtdc] {
    grid-column: 1 / -1;
    padding: 2rem;
}

.stat-label[b-69alckjtdc] {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-value[b-69alckjtdc] {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.stat-value-lg[b-69alckjtdc] {
    font-size: 1.875rem;
}

/* Health badge */
.health-badge[b-69alckjtdc] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #d1fae5;
    color: #059669;
    font-size: 0.625rem;
    font-weight: 900;
    border-radius: 9999px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.health-percent[b-69alckjtdc] {
    font-size: 0.875rem;
    font-weight: 800;
    color: #10b981;
    margin: 0;
}

/* Progress bar */
.progress-track[b-69alckjtdc] {
    width: 100%;
    height: 1rem;
    background-color: #f1f5f9;
    border-radius: 9999px;
    overflow: hidden;
    padding: 2px;
}

.progress-fill[b-69alckjtdc] {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #059669);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: width 0.6s ease;
}

/* --- Health tier color variants ---
   good (>25%) green · limited (<=25%) yellow · low (<=10%) orange · overlimit (<0) red.
   The base .health-badge / .health-percent / .progress-fill are green; these override. */
.health-badge.health-limited[b-69alckjtdc] { background-color: #fef9c3; color: #ca8a04; }
.health-badge.health-low[b-69alckjtdc] { background-color: #ffedd5; color: #ea580c; }
.health-badge.health-overlimit[b-69alckjtdc] { background-color: #fee2e2; color: #dc2626; }

.health-percent.health-percent-limited[b-69alckjtdc] { color: #ca8a04; }
.health-percent.health-percent-low[b-69alckjtdc] { color: #ea580c; }
.health-percent.health-percent-overlimit[b-69alckjtdc] { color: #dc2626; }

.progress-fill-limited[b-69alckjtdc] {
    background: linear-gradient(90deg, #fde047, #eab308);
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3);
}
.progress-fill-low[b-69alckjtdc] {
    background: linear-gradient(90deg, #fb923c, #ea580c);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}
.progress-fill-overlimit[b-69alckjtdc] {
    background: linear-gradient(90deg, #f87171, #dc2626);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Available-credit value turns red when the account is over its limit. */
.stat-value-danger[b-69alckjtdc] { color: #dc2626; }

/* --- Transaction Section --- */
.transactions-header[b-69alckjtdc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 0;
}

.tab-bar[b-69alckjtdc] {
    display: flex;
    gap: 2.5rem;
}

.tab-btn[b-69alckjtdc] {
    background: none;
    border: none;
    padding: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.tab-btn:hover[b-69alckjtdc] {
    color: #475569;
}

.tab-active[b-69alckjtdc] {
    color: #FF3366;
    font-weight: 800;
    border-bottom: 3px solid #FF3366;
    margin-bottom: -2px;
}

.view-all-link[b-69alckjtdc] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FF3366;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding-bottom: 1rem;
    transition: transform 0.2s;
}

.view-all-link:hover[b-69alckjtdc] {
    transform: translateX(4px);
    color: #FF3366;
}

/* Transaction table */
.transactions-table-wrap[b-69alckjtdc] {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.table-header-row th[b-69alckjtdc] {
    background-color: rgba(248, 250, 252, 0.5);
    color: #94a3b8;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    border-top: none;
}

.transaction-row td[b-69alckjtdc] {
    padding: 0.6rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.transaction-row:hover[b-69alckjtdc] {
    background-color: #fff;
    cursor: pointer;
}

.transaction-row:last-child td[b-69alckjtdc] {
    border-bottom: none;
}

/* Secondary (transaction) date reads lighter than the posting date. */
.td-date-tran[b-69alckjtdc] {
    font-weight: 600;
    color: #94a3b8;
}

.td-date[b-69alckjtdc] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
}

.td-merchant-row[b-69alckjtdc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.td-merchant[b-69alckjtdc] {
    display: flex;
    flex-direction: column;
}

.merchant-name[b-69alckjtdc] {
    font-weight: 800;
    color: #1e293b;
    font-size: 0.875rem;
}

.merchant-detail[b-69alckjtdc] {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.td-amount[b-69alckjtdc] {
    font-weight: 900;
    font-size: 1.125rem;
    color: #0f172a;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .stats-grid[b-69alckjtdc] {
        gap: 1rem;
    }
    .stat-value[b-69alckjtdc] {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stitch-card[b-69alckjtdc] {
        border-radius: 1.25rem;
    }
    .stats-grid[b-69alckjtdc] {
        grid-template-columns: 1fr;
    }
    .stat-card-wide[b-69alckjtdc] {
        grid-column: 1;
    }
    .tab-bar[b-69alckjtdc] {
        gap: 1.5rem;
    }
    .transaction-row td[b-69alckjtdc] {
        padding: 0.55rem 1rem;
    }
    .table-header-row th[b-69alckjtdc] {
        padding: 0.75rem 1rem;
    }
}

/* Card lock shortcut, restricted state — greyed and inert. The icon changes to a slash so the state
   is legible without colour alone, and the cursor says "unavailable", not "loading". */
.btn.is-restricted[b-69alckjtdc],
.btn.is-restricted:disabled[b-69alckjtdc] {
    color: #94a3b8;
    border-color: #e2e8f0;
    background: #f8fafc;
    cursor: not-allowed;
    opacity: 1;
}

/* Card state chip — appears only when the card is not simply usable, so the greyed lock shortcut
   beside it is never an unexplained dead control. Amber for the holder's own lock, slate for a bank
   restriction: the same two-colour vocabulary the Manage page uses, so the states read as one system. */
.dash-card-state[b-69alckjtdc] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.dash-card-state.locked[b-69alckjtdc] { background: #fffbeb; color: #b45309; }
.dash-card-state.restricted[b-69alckjtdc] { background: #f1f5f9; color: #475569; }
.dash-card-state i[b-69alckjtdc] { font-size: 0.8rem; }
/* /Components/Pages/Enroll.razor.rz.scp.css */
.register-container[b-8igriyu8uw] {
    min-height: 100vh;
    background-color: #f4f7f9;
    padding: 20px;
}

.register-card[b-8igriyu8uw] {
    width: 100%;
    max-width: 950px;
    min-height: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ensure we can absolutely position the multi-color band at the bottom */
.register-card[b-8igriyu8uw] {
    position: relative;
    overflow: hidden;
}

.brand-section[b-8igriyu8uw] {
    flex: 1;
    /* green gradient similar to the provided mockup */
    background: linear-gradient(90deg, #b6e13b 0%, #4fc176 60%, #36b26b 100%);
    background-size: cover;
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    padding: 3rem !important;
    color: #ffffff;
}

/* center text inside brand section and add spacing between elements */
.brand-section[b-8igriyu8uw] {
    text-align: center;
}

.brand-section .logo-white[b-8igriyu8uw] {
    margin-bottom: 2.5rem; /* increase space between logo and heading */
}

.brand-section h1[b-8igriyu8uw],
.brand-section p[b-8igriyu8uw],
.brand-section .footer-small[b-8igriyu8uw] {
    text-align: center;
}

/* logo styling - centered and larger */
.brand-logo[b-8igriyu8uw] {
    max-height: 80px; /* twice the previous 40px */
    width: auto;
    display: block;
    margin: 0 auto;
}

/* multi-color band pinned to bottom of the active card area */
.payce-bar[b-8igriyu8uw] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    object-fit: cover;
    z-index: 5;
}

.form-section[b-8igriyu8uw] {
    flex: 1.2;
}

.form-control[b-8igriyu8uw] {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.form-control:focus[b-8igriyu8uw] {
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.1);
}

.register-btn[b-8igriyu8uw] {
    background-color: #d81b60; /* Matching the pinkish-red from your web mockup */
    border: none;
    font-weight: 600;
    letter-spacing: 1.5px; /* increased letter spacing for the button label */
    text-align: center; /* ensure centered label */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.register-btn:hover[b-8igriyu8uw] {
    background-color: #ad1457;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .register-card[b-8igriyu8uw] {
        border-radius: 15px;
    }
}
/* /Components/Pages/ManageCard.razor.rz.scp.css */
/* ===========================================================
   Manage Card — card-centric control console (Payce Stitch)
   =========================================================== */

.mc[b-y0v6q8m4j3] {
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 3.5rem;
}

/* --- Back link + title --- */
.mc-back[b-y0v6q8m4j3] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #64748b;
    text-decoration: none;
    padding: 0.35rem 0.1rem;
    transition: color 0.2s, gap 0.2s;
}
.mc-back:hover[b-y0v6q8m4j3] { color: #FF3366; gap: 0.65rem; }

.mc-title[b-y0v6q8m4j3] {
    margin: 0.75rem 0 1.5rem;
    animation: mc-rise-b-y0v6q8m4j3 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mc-title h1[b-y0v6q8m4j3] {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 0.35rem;
}
.mc-title p[b-y0v6q8m4j3] {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    max-width: 46ch;
}

/* --- HERO ------------------------------------------------- */
.mc-hero[b-y0v6q8m4j3] {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: center;
    padding: 2rem 2.25rem;
    border-radius: 1.75rem;
    background:
        radial-gradient(120% 140% at 100% 0%, rgba(0, 153, 204, 0.10), transparent 55%),
        radial-gradient(120% 140% at 0% 100%, rgba(255, 51, 102, 0.08), transparent 50%),
        rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 24px 60px -32px rgba(0, 51, 102, 0.35);
    animation: mc-rise-b-y0v6q8m4j3 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

/* The card artwork, reacting to lock state */
.mc-card[b-y0v6q8m4j3] {
    position: relative;
    border-radius: 1rem;
    isolation: isolate;
}
.mc-card-img[b-y0v6q8m4j3] {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 45px -18px rgba(0, 51, 102, 0.55);
    transition: filter 0.55s ease, transform 0.4s ease;
}
.mc-card:hover .mc-card-img[b-y0v6q8m4j3] { transform: translateY(-3px) rotate(-0.6deg); }

.mc-card-glow[b-y0v6q8m4j3] {
    position: absolute;
    inset: -14%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.32), transparent 62%);
    filter: blur(26px);
    opacity: 0.9;
    transition: background 0.55s ease, opacity 0.55s ease;
}

/* Frosted lock seal — hidden until locked */
.mc-lock-seal[b-y0v6q8m4j3] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.mc-lock-seal i[b-y0v6q8m4j3] { font-size: 1.9rem; }
.mc-lock-seal span[b-y0v6q8m4j3] {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
}

.mc-card.is-locked .mc-card-img[b-y0v6q8m4j3] { filter: grayscale(0.85) brightness(0.82) contrast(0.95); }
.mc-card.is-locked .mc-card-glow[b-y0v6q8m4j3] { background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 62%); }
.mc-card.is-locked .mc-lock-seal[b-y0v6q8m4j3] { opacity: 1; transform: scale(1); }

/* Hero meta column */
.mc-hero-meta[b-y0v6q8m4j3] { min-width: 0; }

.mc-status[b-y0v6q8m4j3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem 0.4rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}
.mc-status.active[b-y0v6q8m4j3] { background: #ecfdf5; color: #047857; }
.mc-status.locked[b-y0v6q8m4j3] { background: #fffbeb; color: #b45309; }
.mc-status-dot[b-y0v6q8m4j3] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    position: relative;
}
.mc-status.active .mc-status-dot[b-y0v6q8m4j3] { background: #10b981; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); animation: mc-pulse-b-y0v6q8m4j3 2s infinite; }
.mc-status.locked .mc-status-dot[b-y0v6q8m4j3] { background: #f59e0b; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); animation: mc-pulse-b-y0v6q8m4j3 2s infinite; }

.mc-brand[b-y0v6q8m4j3] {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0 0 0.25rem;
}
.mc-pan[b-y0v6q8m4j3] {
    font-family: 'Montserrat', monospace;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: #334155;
    font-weight: 600;
    margin: 0 0 0.85rem;
}
.mc-hint[b-y0v6q8m4j3] {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
    max-width: 34ch;
}

/* Multi-card switcher */
.mc-switcher[b-y0v6q8m4j3] { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.mc-chip[b-y0v6q8m4j3] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}
.mc-chip:hover[b-y0v6q8m4j3] { border-color: #cbd5e1; transform: translateY(-1px); }
.mc-chip.on[b-y0v6q8m4j3] { background: #0f172a; color: #fff; border-color: #0f172a; }

/* --- Segmented control ----------------------------------- */
.mc-seg[b-y0v6q8m4j3] {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    margin: 1.75rem 0 1.25rem;
    padding: 0.35rem;
    background: rgba(226, 232, 240, 0.6);
    border-radius: 50px;
    animation: mc-rise-b-y0v6q8m4j3 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.mc-seg-slider[b-y0v6q8m4j3] {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    width: calc(50% - 0.35rem);
    height: calc(100% - 0.7rem);
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 4px 14px -4px rgba(0, 51, 102, 0.25);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-seg-btn[b-y0v6q8m4j3] {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 0;
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #64748b;
    cursor: pointer;
    border-radius: 50px;
    transition: color 0.25s;
}
.mc-seg-btn.on[b-y0v6q8m4j3] { color: #0f172a; }
.mc-seg-btn i[b-y0v6q8m4j3] { font-size: 1rem; }

/* --- Panels ---------------------------------------------- */
.mc-panel[b-y0v6q8m4j3] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 2rem 2.25rem;
    animation: mc-rise-b-y0v6q8m4j3 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mc-alert[b-y0v6q8m4j3] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

/* Lock panel */
.mc-lock-state[b-y0v6q8m4j3] { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.75rem; }
.mc-lock-badge[b-y0v6q8m4j3] {
    flex: none;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}
.mc-lock-badge.active[b-y0v6q8m4j3] { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 10px 22px -8px rgba(16, 185, 129, 0.6); }
.mc-lock-badge.locked[b-y0v6q8m4j3] { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 10px 22px -8px rgba(245, 158, 11, 0.6); }
.mc-lock-state h3[b-y0v6q8m4j3] { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin: 0 0 0.2rem; }
.mc-lock-state p[b-y0v6q8m4j3] { font-size: 0.85rem; line-height: 1.55; color: #64748b; margin: 0; }

.mc-action[b-y0v6q8m4j3] {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 0;
    border-radius: 50px;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s;
}
.mc-action i[b-y0v6q8m4j3] { font-size: 1.05rem; }
.mc-action.lock[b-y0v6q8m4j3] { background: linear-gradient(135deg, #FF3366, #e91e63); box-shadow: 0 12px 26px -10px rgba(233, 30, 99, 0.6); }
.mc-action.unlock[b-y0v6q8m4j3] { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 12px 26px -10px rgba(16, 185, 129, 0.6); }
.mc-action:not(:disabled):hover[b-y0v6q8m4j3] { transform: translateY(-2px); filter: brightness(1.04); }
.mc-action:disabled[b-y0v6q8m4j3] { opacity: 0.7; cursor: progress; }

/* PIN panel */
.mc-pin-head[b-y0v6q8m4j3] { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.mc-pin-icon[b-y0v6q8m4j3] {
    flex: none;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #003366, #0099CC);
    box-shadow: 0 10px 22px -10px rgba(0, 51, 102, 0.6);
}
.mc-pin-head h3[b-y0v6q8m4j3] { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin: 0 0 0.2rem; }
.mc-pin-head p[b-y0v6q8m4j3] { font-size: 0.82rem; color: #64748b; margin: 0; }

.mc-pin-dots[b-y0v6q8m4j3] { display: flex; align-items: center; gap: 0.75rem; margin: 0.5rem 0 1.5rem; }
.mc-dot[b-y0v6q8m4j3] {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: #e2e8f0;
    transition: transform 0.2s ease, background 0.2s ease;
}
.mc-dot.gate[b-y0v6q8m4j3] { margin-right: 0.75rem; position: relative; }
.mc-dot.gate[b-y0v6q8m4j3]::after {
    content: "";
    position: absolute;
    right: -0.78rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: #e2e8f0;
}
.mc-dot.filled[b-y0v6q8m4j3] { background: #FF3366; transform: scale(1.18); }

.mc-label[b-y0v6q8m4j3] {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.5rem;
}
.mc-input[b-y0v6q8m4j3] {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    color: #0f172a;
    transition: all 0.2s;
}
.mc-input[b-y0v6q8m4j3]::placeholder { letter-spacing: 0.35em; color: #cbd5e1; }
.mc-input:focus[b-y0v6q8m4j3] {
    background: #fff;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
    outline: none;
}

.mc-pin-note[b-y0v6q8m4j3] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    margin: 0.7rem 0 1.6rem;
}
.mc-pin-note.ok[b-y0v6q8m4j3] { color: #059669; }

.mc-pin-submit[b-y0v6q8m4j3] { width: 100%; }
/* btn-payce-pink carries no disabled treatment, so a disabled Update PIN kept its full pink fill and
   read as live — the only clue was that clicking did nothing. Grey it, and say "unavailable" with the
   cursor rather than "loading". Applies to the incomplete-PIN case too, which had the same problem. */
.mc-pin-submit:disabled[b-y0v6q8m4j3] {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    border-color: transparent;
    color: #fff;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

/* --- Gated-action note ------------------------------------
   Appears above exactly the actions that require a code, and nowhere else. Deliberately quiet: it is a
   statement of what will happen next, not a warning, so it sits at note weight rather than alert weight.
   The left rule is the only ornament — it reads as a threshold to cross. */
.mc-gated[b-y0v6q8m4j3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.6rem 0.85rem;
    border-left: 3px solid #FF3366;
    border-radius: 0 8px 8px 0;
    background: #fff5f7;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}
.mc-gated i[b-y0v6q8m4j3] {
    flex: none;
    font-size: 0.95rem;
    color: #FF3366;
}

/* --- Restricted --------------------------------------------
   A card blocked by someone other than the holder: reported lost or stolen, flagged by fraud
   monitoring, or blocked by the bank. It deliberately drops out of the signal palette altogether —
   green and amber both say "this is yours to change", and the page has no honest way to say "it
   isn't" in a signal colour. So Restricted borrows the page's own slate ramp, the same greys already
   carrying muted text and hairlines: present, readable, and visibly not a control.
   The note variant reuses .mc-gated with a grey rule — pink means "you can, with a code", grey means
   "you can't here, and here's who can". */
.mc-gated.is-restricted[b-y0v6q8m4j3] {
    border-left-color: #94a3b8;
    background: #f8fafc;
}
.mc-gated.is-restricted i[b-y0v6q8m4j3] { color: #64748b; }

.mc-status.restricted[b-y0v6q8m4j3] { background: #f1f5f9; color: #475569; }
/* No pulse: the dot animates to say "live"; a restricted card is static until the bank acts. */
.mc-status.restricted .mc-status-dot[b-y0v6q8m4j3] { background: #94a3b8; box-shadow: none; animation: none; }

.mc-card.is-restricted .mc-card-img[b-y0v6q8m4j3] { filter: grayscale(1) brightness(0.72) contrast(0.92); }
.mc-card.is-restricted .mc-card-glow[b-y0v6q8m4j3] { background: radial-gradient(circle, rgba(100, 116, 139, 0.3), transparent 62%); }
.mc-card.is-restricted .mc-lock-seal[b-y0v6q8m4j3] {
    opacity: 1;
    transform: scale(1);
    background: rgba(15, 23, 42, 0.5);
}

.mc-lock-badge.restricted[b-y0v6q8m4j3] {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    box-shadow: 0 10px 22px -8px rgba(100, 116, 139, 0.55);
}
.mc-pin-icon.restricted[b-y0v6q8m4j3] {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    box-shadow: 0 10px 22px -10px rgba(100, 116, 139, 0.55);
}

.mc-action.restricted[b-y0v6q8m4j3] {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    box-shadow: none;
}
/* Unavailable, not loading. The base .mc-action:disabled uses cursor: progress for the busy case,
   which would wrongly promise this one is about to finish. */
.mc-action.restricted:disabled[b-y0v6q8m4j3] {
    opacity: 1;
    cursor: not-allowed;
}

/* --- Empty state ----------------------------------------- */
.mc-empty[b-y0v6q8m4j3] {
    max-width: 420px;
    margin: 4rem auto;
    text-align: center;
    color: #64748b;
}
.mc-empty i[b-y0v6q8m4j3] { font-size: 2.5rem; color: #cbd5e1; }
.mc-empty p[b-y0v6q8m4j3] { margin: 1rem 0 1.5rem; font-weight: 600; }
.mc-back-link[b-y0v6q8m4j3] { color: #FF3366; font-weight: 700; text-decoration: none; }
.mc-back-link:hover[b-y0v6q8m4j3] { text-decoration: underline; }

/* --- Motion ---------------------------------------------- */
@keyframes mc-rise-b-y0v6q8m4j3 {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes mc-pulse-b-y0v6q8m4j3 {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .mc-title[b-y0v6q8m4j3], .mc-hero[b-y0v6q8m4j3], .mc-seg[b-y0v6q8m4j3], .mc-panel[b-y0v6q8m4j3] { animation: none; }
    .mc-status-dot[b-y0v6q8m4j3] { animation: none !important; }
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 760px) {
    .mc-hero[b-y0v6q8m4j3] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .mc-card[b-y0v6q8m4j3] { max-width: 320px; margin: 0 auto; }
    .mc-panel[b-y0v6q8m4j3] { padding: 1.5rem; }
    .mc-title h1[b-y0v6q8m4j3] { font-size: 1.5rem; }
}
/* /Components/Pages/NoAccountsFound.razor.rz.scp.css */
.no-accounts-wrapper[b-ilx7lyduzw] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Sky Blue to Teal Gradient from Login.blue */
    background: linear-gradient(135deg, #53c6e2 0%, #3bb1ca 50%, #17a2b8 100%);
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

.no-accounts-card[b-ilx7lyduzw] {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.text-pink[b-ilx7lyduzw] { color: #e91e63; }

/* Vibrant Pink Button from Login */
.btn-payce-pink[b-ilx7lyduzw] {
    background-color: #e91e63;
    color: white;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.btn-payce-pink:hover[b-ilx7lyduzw] {
    background-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: white;
}

.fw-bold[b-ilx7lyduzw] { font-weight: 700 !important; }

/* Lime variant matching the payce pink button sizing and typography */
.btn-payce-lime[b-ilx7lyduzw] {
    background-color: #8BC34A; /* light lime green used in other pages */
    color: white;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.btn-payce-lime:hover[b-ilx7lyduzw] {
    background-color: #7bb241; /* slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.35);
    color: white;
}
/* /Components/Pages/Payments.razor.rz.scp.css */
.payments-content[b-x2f688xvn3] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.payments-tabs[b-x2f688xvn3] {
    display: flex;
    gap: .25rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.25rem;
}

.ptab[b-x2f688xvn3] {
    background: none;
    border: none;
    padding: .6rem 1.1rem;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
}

.ptab.active[b-x2f688xvn3] {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
}

.pay-card[b-x2f688xvn3] {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.section-title[b-x2f688xvn3] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-grid[b-x2f688xvn3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field label[b-x2f688xvn3] {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: .3rem;
}

/* Restricted funding account — the reason beside the disabled action, in the same grey the card
   controls use. Grey, not red: nothing has gone wrong, this simply isn't the holder's to do. */
.pay-restricted[b-x2f688xvn3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.85rem 0 0;
    padding: 0.6rem 0.85rem;
    border-left: 3px solid #94a3b8;
    border-radius: 0 8px 8px 0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}
.pay-restricted i[b-x2f688xvn3] { flex: none; font-size: 0.95rem; color: #64748b; }
/* /Components/Pages/Prefs.razor.rz.scp.css */
/* === Stitch Preferences Content Styles === */
.prefs-content[b-dnkvg8qj6t] {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 3rem;
}

/* --- Glass Card --- */
.prefs-card[b-dnkvg8qj6t] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.prefs-card-header[b-dnkvg8qj6t] {
    padding: 2rem 2rem 0;
}

.prefs-card-header h3[b-dnkvg8qj6t] {
    font-weight: 800;
    font-size: 1.125rem;
    color: #0f172a;
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.prefs-card-header p[b-dnkvg8qj6t] {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

.prefs-card-body[b-dnkvg8qj6t] {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
}

/* --- Verification Status --- */
.verify-status[b-dnkvg8qj6t] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.verify-badge[b-dnkvg8qj6t] {
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.verify-badge.verified[b-dnkvg8qj6t] {
    background-color: #d1fae5;
    color: #059669;
}

.verify-badge.unverified[b-dnkvg8qj6t] {
    background-color: #fef2f2;
    color: #dc3545;
}

/* --- Preference Toggles --- */
.pref-toggle[b-dnkvg8qj6t] {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
}

.pref-toggle:first-child[b-dnkvg8qj6t] {
    padding-top: 0;
}

.pref-toggle:last-child[b-dnkvg8qj6t] {
    border-bottom: none;
    padding-bottom: 0;
}

.toggle-row[b-dnkvg8qj6t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
}

.toggle-info[b-dnkvg8qj6t] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-icon[b-dnkvg8qj6t] {
    font-size: 1.25rem;
    color: #94a3b8;
    width: 2rem;
    text-align: center;
}

.toggle-label[b-dnkvg8qj6t] {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1e293b;
}

.toggle-desc[b-dnkvg8qj6t] {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Switch styling */
.form-check.form-switch[b-dnkvg8qj6t] {
    padding-left: 0;
    margin: 0;
}

.form-check.form-switch .form-check-input[b-dnkvg8qj6t] {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
    border-color: #e2e8f0;
}

.form-check.form-switch .form-check-input:checked[b-dnkvg8qj6t] {
    background-color: #FF3366;
    border-color: #FF3366;
}

.form-check.form-switch .form-check-input:focus[b-dnkvg8qj6t] {
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
    border-color: #FF3366;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .prefs-card-header[b-dnkvg8qj6t] {
        padding: 1.5rem 1.5rem 0;
    }

    .prefs-card-body[b-dnkvg8qj6t] {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .prefs-card[b-dnkvg8qj6t] {
        border-radius: 1.25rem;
    }
}
/* /Components/Pages/ServiceUnavailable.razor.rz.scp.css */
.unavailable-wrapper[b-gjhuj845f0] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #53c6e2 0%, #3bb1ca 50%, #17a2b8 100%);
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

.unavailable-card[b-gjhuj845f0] {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.status-icon[b-gjhuj845f0] {
    font-size: 3.5rem;
    color: #17a2b8;
    opacity: 0.8;
}

.text-pink[b-gjhuj845f0] { color: #e91e63; }

.btn-payce-pink[b-gjhuj845f0] {
    background-color: #e91e63;
    color: white;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.btn-payce-pink:hover[b-gjhuj845f0] {
    background-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: white;
}

.fw-bold[b-gjhuj845f0] { font-weight: 700 !important; }
/* /Components/Pages/Statements.razor.rz.scp.css */
/* === Statements Page Styles === */
.statements-content[b-z1f4ynywmj] {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Billing-cycle selector (up to six rolling cycles; active = brand pink) --- */
.period-rail-wrap[b-z1f4ynywmj] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.period-eyebrow[b-z1f4ynywmj] {
    font-size: 0.6875rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 0;
}

/* Horizontal rail so any count scrolls rather than wrapping and nudging the summary below.
   Vertical padding leaves room for the active chip's focus ring and pink glow (overflow-x
   would otherwise clip them); negative side margin keeps the rail flush with the content edge. */
.period-rail[b-z1f4ynywmj] {
    display: flex;
    gap: 0.625rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
    margin: -0.5rem -0.25rem -0.5rem;
    scrollbar-width: none;
}

.period-rail[b-z1f4ynywmj]::-webkit-scrollbar {
    display: none;
}

.period-chip[b-z1f4ynywmj] {
    flex: 0 0 auto;
    appearance: none;
    border: 2px solid #f1f5f9;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.7rem 1.6rem;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.875rem;
    color: #64748b;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease,
                background-color 0.18s ease, border-color 0.18s ease;
}

.period-chip:hover[b-z1f4ynywmj] {
    color: #1e293b;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.period-chip:focus-visible[b-z1f4ynywmj] {
    outline: none;
    border-color: #FF3366;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.18);
}

/* Active cycle: solid pink pill carrying the same glow as the Download button (button-language cohesion). */
.period-chip.active[b-z1f4ynywmj] {
    background-color: #FF3366;
    border-color: #FF3366;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
}

.period-chip.active:hover[b-z1f4ynywmj] {
    background-color: #e6004d;
    border-color: #e6004d;
    color: #fff;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .period-chip[b-z1f4ynywmj] {
        transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
    }

    .period-chip:hover[b-z1f4ynywmj],
    .period-chip.active:hover[b-z1f4ynywmj] {
        transform: none;
    }
}

/* --- Statement Summary Card --- */
.statement-card[b-z1f4ynywmj] {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(148, 163, 184, 0.15);
    position: relative;
    overflow: hidden;
}

.statement-card-header[b-z1f4ynywmj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.summary-label[b-z1f4ynywmj] {
    font-size: 0.6875rem;
    font-weight: 900;
    color: #FF3366;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.25rem;
}

.summary-title[b-z1f4ynywmj] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.btn-download-pdf[b-z1f4ynywmj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FF3366;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
    white-space: nowrap;
}

.btn-download-pdf:hover[b-z1f4ynywmj] {
    background-color: #e6004d;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 51, 102, 0.35);
}

/* --- 4-column Stats Grid --- */
.stats-grid-4col[b-z1f4ynywmj] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.stat-item[b-z1f4ynywmj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item-label[b-z1f4ynywmj] {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.stat-item-value[b-z1f4ynywmj] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

/* --- Transactions Section --- */
.transactions-section[b-z1f4ynywmj] {
    display: flex;
    flex-direction: column;
}

.transactions-header[b-z1f4ynywmj] {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 0;
    padding-bottom: 1rem;
}

.transactions-title[b-z1f4ynywmj] {
    font-size: 0.875rem;
    font-weight: 800;
    color: #FF3366;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Transaction table */
.transactions-table-wrap[b-z1f4ynywmj] {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.table-header-row th[b-z1f4ynywmj] {
    background-color: rgba(248, 250, 252, 0.5);
    color: #94a3b8;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    border-top: none;
}

.transaction-row td[b-z1f4ynywmj] {
    padding: 0.6rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* Secondary (transaction) date reads lighter than the posting date. */
.td-date-tran[b-z1f4ynywmj] {
    font-weight: 600;
    color: #94a3b8;
}

.transaction-row:hover[b-z1f4ynywmj] {
    background-color: #fff;
    cursor: pointer;
}

.transaction-row:last-child td[b-z1f4ynywmj] {
    border-bottom: none;
}

.td-date[b-z1f4ynywmj] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
}

.td-merchant-row[b-z1f4ynywmj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.td-merchant[b-z1f4ynywmj] {
    display: flex;
    flex-direction: column;
}

.merchant-name[b-z1f4ynywmj] {
    font-weight: 800;
    color: #1e293b;
    font-size: 0.875rem;
}

.merchant-detail[b-z1f4ynywmj] {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.td-amount[b-z1f4ynywmj] {
    font-weight: 900;
    font-size: 1.125rem;
    color: #0f172a;
}

/* --- Utility Colors --- */
.text-hot-pink[b-z1f4ynywmj] {
    color: #FF3366;
}

.text-emerald[b-z1f4ynywmj] {
    color: #10b981;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .stats-grid-4col[b-z1f4ynywmj] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .statement-card[b-z1f4ynywmj] {
        border-radius: 1.5rem;
        padding: 1.5rem;
    }

    .statement-card-header[b-z1f4ynywmj] {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .summary-title[b-z1f4ynywmj] {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .period-chip[b-z1f4ynywmj] {
        padding: 0.6rem 1.25rem;
        font-size: 0.8125rem;
    }

    .stats-grid-4col[b-z1f4ynywmj] {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item-value[b-z1f4ynywmj] {
        font-size: 1rem;
    }

    .transaction-row td[b-z1f4ynywmj] {
        padding: 0.55rem 1rem;
    }

    .table-header-row th[b-z1f4ynywmj] {
        padding: 0.75rem 1rem;
    }
}
/* /Components/Pages/Transfers.razor.rz.scp.css */
.transfers-content[b-czubbdlmtk] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

/* Tabs — matched to the Bill Payments page (.payments-tabs / .ptab). */
.ptabs[b-czubbdlmtk] {
    display: flex;
    gap: .25rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.25rem;
}

.ptab[b-czubbdlmtk] {
    background: none;
    border: none;
    padding: .6rem 1.1rem;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
}

.ptab.active[b-czubbdlmtk] {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
}

.xfer-card[b-czubbdlmtk] {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.section-title[b-czubbdlmtk] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-grid[b-czubbdlmtk] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field label[b-czubbdlmtk] {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: .3rem;
}

/* Recipient lookup row: a flexible code input and a non-shrinking Look up button.
   A .lookup-mode select sat ahead of them until card-number entry was withdrawn. */
.recipient-row[b-czubbdlmtk] {
    display: flex;
    gap: .5rem;
    align-items: stretch;
}

.lookup-input[b-czubbdlmtk] {
    flex: 1 1 auto;
    min-width: 0;
}

.lookup-btn[b-czubbdlmtk] {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Quiet helper line under the code field — the recipient has to be asked for the code,
   so say so rather than leaving them guessing what to type. */
.form-hint[b-czubbdlmtk] {
    display: block;
    margin-top: .35rem;
    color: #6c757d;
    font-size: .8125rem;
}

@media (max-width: 520px) {
    .recipient-row[b-czubbdlmtk] { flex-wrap: wrap; }
    .lookup-input[b-czubbdlmtk] { flex-basis: 100%; }
}

/* History Sent/Received sub-tabs: a segmented pill, deliberately quieter than the
   page-level .ptabs underline so the tab hierarchy stays readable. */
.history-head[b-czubbdlmtk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
}

.history-head .section-title[b-czubbdlmtk] { margin-bottom: 0; }

.hist-controls[b-czubbdlmtk] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.hist-subtabs[b-czubbdlmtk] {
    display: inline-flex;
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    border-radius: 2rem;
    padding: .2rem;
}

/* Refresh: a quiet icon button, sibling to the pill rather than inside it, so it
   reads as an action on the whole list, not a third direction. */
.hist-refresh[b-czubbdlmtk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    background: #fff;
    color: #6c757d;
    cursor: pointer;
}

.hist-refresh:hover:not(:disabled)[b-czubbdlmtk] { background: #f1f3f5; color: #0d6efd; }
.hist-refresh:disabled[b-czubbdlmtk] { opacity: .6; cursor: default; }

.hist-refresh:focus-visible[b-czubbdlmtk] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.hist-refresh .spin[b-czubbdlmtk] { animation: hist-spin-b-czubbdlmtk .7s linear infinite; }

@keyframes hist-spin-b-czubbdlmtk {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hist-refresh .spin[b-czubbdlmtk] { animation: none; }
}

.hist-subtab[b-czubbdlmtk] {
    border: none;
    background: transparent;
    border-radius: 2rem;
    padding: .3rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
}

.hist-subtab.active[b-czubbdlmtk] {
    background: #fff;
    color: #0d6efd;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.hist-subtab:focus-visible[b-czubbdlmtk] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Inbound transfer amounts read as credits. */
.amt-in[b-czubbdlmtk] {
    color: #198754;
    font-weight: 600;
}

.favorites-row[b-czubbdlmtk] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin: .5rem 0 1rem;
}

.favorites-label[b-czubbdlmtk] {
    font-size: .85rem;
    color: #6c757d;
    font-weight: 600;
}

/* A favorite chip is a person you can pay in one tap — brand it so the affordance reads as an action. */
.fav-chip[b-czubbdlmtk] {
    background: #fff;
    border: 1.5px solid #f1d3dc;
    border-radius: 1rem;
    padding: .3rem .85rem;
    font-size: .85rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: background-color .15s, border-color .15s, color .15s, box-shadow .15s;
}

.fav-chip .bi[b-czubbdlmtk] { color: #FF3366; font-size: .8rem; }

.fav-chip:hover[b-czubbdlmtk] {
    background: #FF3366;
    border-color: #FF3366;
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 51, 102, .25);
}

.fav-chip:hover .bi[b-czubbdlmtk] { color: #fff; }

.fav-chip:focus-visible[b-czubbdlmtk] {
    outline: none;
    border-color: #FF3366;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, .18);
}

/* Sender's own optional label field, shown when "Save as favorite" is ticked. */
.fav-note-input[b-czubbdlmtk] {
    margin-top: .5rem;
    max-width: 340px;
}

/* Send + Remove pair on each Favorites-tab row. */
.fav-actions[b-czubbdlmtk] {
    display: inline-flex;
    gap: .4rem;
    justify-content: flex-end;
}

@media (prefers-reduced-motion: reduce) {
    .fav-chip[b-czubbdlmtk] { transition: none; }
}

.recipient-confirm[b-czubbdlmtk] {
    background: #e7f5ee;
    border: 1px solid #b7e0c8;
    border-radius: .5rem;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.save-fav[b-czubbdlmtk] {
    margin-left: auto;
    font-size: .85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

/* Restricted funding account — the reason beside the disabled action, in the same grey the card
   controls use. Grey, not red: nothing has gone wrong, this simply isn't the holder's to do. */
.send-restricted[b-czubbdlmtk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.85rem 0 0;
    padding: 0.6rem 0.85rem;
    border-left: 3px solid #94a3b8;
    border-radius: 0 8px 8px 0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}
.send-restricted i[b-czubbdlmtk] { flex: none; font-size: 0.95rem; color: #64748b; }
