/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* App Layout */
.app-layout[b-dc0k9txb6h] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Header Styles */
.app-header[b-dc0k9txb6h] {
    background: linear-gradient(135deg, #7aa31a 0%, #5c8012 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container[b-dc0k9txb6h] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo[b-dc0k9txb6h] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img[b-dc0k9txb6h] {
    height: 40px;
    border-radius: 8px;
}

.logo-text[b-dc0k9txb6h] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-accent[b-dc0k9txb6h] {
    color: #FFD100;
}

.header-right[b-dc0k9txb6h] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-user[b-dc0k9txb6h] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-info[b-dc0k9txb6h] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.user-name[b-dc0k9txb6h] {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-email[b-dc0k9txb6h] {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===========================
   Hamburger Button
   =========================== */
.hamburger-btn[b-dc0k9txb6h] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.hamburger-btn:hover[b-dc0k9txb6h] {
    background: rgba(255, 255, 255, 0.22);
}

/* ===========================
   Slide Menu
   =========================== */
.menu-overlay[b-dc0k9txb6h] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    animation: menuFadeIn-b-dc0k9txb6h 0.2s ease;
}

@keyframes menuFadeIn-b-dc0k9txb6h {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-menu[b-dc0k9txb6h] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 201;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    animation: menuSlideIn-b-dc0k9txb6h 0.25s ease;
    overflow-y: auto;
}

@keyframes menuSlideIn-b-dc0k9txb6h {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* User Card inside menu */
.menu-user-card[b-dc0k9txb6h] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f3f4f6;
    background: #f9fafb;
}

.menu-user-avatar[b-dc0k9txb6h] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #7aa31a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.menu-user-info[b-dc0k9txb6h] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.menu-user-name[b-dc0k9txb6h] {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-user-email[b-dc0k9txb6h] {
    font-size: 12px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Menu Sections */
.menu-section[b-dc0k9txb6h] {
    padding: 8px 12px;
}

.menu-section-label[b-dc0k9txb6h] {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 12px 4px;
}

.menu-section-bottom[b-dc0k9txb6h] {
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    padding-top: 8px;
    padding-bottom: 16px;
}

/* Menu Items */
.menu-item[b-dc0k9txb6h] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.menu-item:hover[b-dc0k9txb6h] {
    background: #f3f4f6;
    color: #1a1a2e;
}

.menu-item.active[b-dc0k9txb6h] {
    background: #f0f7e0;
    color: #7aa31a;
}

.menu-item.active i[b-dc0k9txb6h] {
    color: #7aa31a;
}

.menu-item i[b-dc0k9txb6h] {
    font-size: 18px;
    color: #6b7280;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.menu-item span[b-dc0k9txb6h] {
    flex: 1;
}

.menu-badge[b-dc0k9txb6h] {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.menu-item-logout[b-dc0k9txb6h] {
    color: #dc2626;
}

.menu-item-logout i[b-dc0k9txb6h] {
    color: #dc2626;
}

.menu-item-logout:hover[b-dc0k9txb6h] {
    background: #fef2f2;
    color: #b91c1c;
}

/* PWA Install — styling only (visibility controlled by app.css) */
.menu-item-install[b-dc0k9txb6h] {
    color: #5c8012;
    font-weight: 600;
}

.menu-item-install i[b-dc0k9txb6h] {
    color: #5c8012;
}

.menu-item-install:hover[b-dc0k9txb6h] {
    background: #f0f8e0;
    color: #4a6910;
}

.menu-ios-hint[b-dc0k9txb6h] {
    font-size: 0.8rem;
    color: #6b7280;
    cursor: default;
    line-height: 1.4;
}

.menu-ios-hint i[b-dc0k9txb6h] {
    color: #5c8012;
}

/* Main Content */
.app-main[b-dc0k9txb6h] {
    flex: 1;
    padding-bottom: 80px;
}

.main-container[b-dc0k9txb6h] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Bottom Navigation */
.bottom-nav[b-dc0k9txb6h] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.nav-item[b-dc0k9txb6h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #6c757d;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 100px;
}

.nav-item:hover[b-dc0k9txb6h] {
    background: #f8f9fa;
    color: #95c11f;
}

.nav-item.active[b-dc0k9txb6h] {
    color: #7aa31a;
    background: #f0f7e0;
}

.nav-icon[b-dc0k9txb6h] {
    font-size: 1.5rem;
}

/* Icon wrapper for badge positioning */
.nav-icon-wrap[b-dc0k9txb6h] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-badge[b-dc0k9txb6h] {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.nav-label[b-dc0k9txb6h] {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .app-main[b-dc0k9txb6h] {
        padding-bottom: 2rem;
    }

    .bottom-nav[b-dc0k9txb6h] {
        position: static;
        max-width: 1400px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        justify-content: center;
        gap: 1rem;
        background: transparent;
        box-shadow: none;
    }

    .nav-item[b-dc0k9txb6h] {
        flex: 0 0 auto;
        padding: 0.75rem 1.5rem;
    }

    .nav-label[b-dc0k9txb6h] {
        font-size: 0.875rem;
    }

    .user-info[b-dc0k9txb6h] {
        display: flex;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .header-container[b-dc0k9txb6h] {
        padding: 0 1rem;
    }

    .logo-text[b-dc0k9txb6h] {
        font-size: 1.25rem;
    }

    .user-info[b-dc0k9txb6h] {
        display: none;
    }

    .main-container[b-dc0k9txb6h] {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img[b-dc0k9txb6h] {
        height: 35px;
    }

    .logo-text[b-dc0k9txb6h] {
        font-size: 1.1rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-l904ygxcq3],
.components-reconnect-repeated-attempt-visible[b-l904ygxcq3],
.components-reconnect-failed-visible[b-l904ygxcq3],
.components-pause-visible[b-l904ygxcq3],
.components-resume-failed-visible[b-l904ygxcq3],
.components-rejoining-animation[b-l904ygxcq3] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-retrying[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-failed[b-l904ygxcq3],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-l904ygxcq3] {
    display: block;
}


#components-reconnect-modal[b-l904ygxcq3] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-l904ygxcq3 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-l904ygxcq3 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-l904ygxcq3 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-l904ygxcq3]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-l904ygxcq3 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-l904ygxcq3 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-l904ygxcq3 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-l904ygxcq3 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-l904ygxcq3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-l904ygxcq3] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-l904ygxcq3] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-l904ygxcq3] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-l904ygxcq3] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-l904ygxcq3] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-l904ygxcq3] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-l904ygxcq3 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-l904ygxcq3] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-l904ygxcq3 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Ads/Ads.razor.rz.scp.css */
/* ===========================
   Ads — Light theme, mobile-first
   =========================== */

.cw-page[b-hsce7ozzwx] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-hsce7ozzwx] { display: flex; justify-content: center; padding: 8px 0; }
.cw-header-logged[b-hsce7ozzwx] { justify-content: space-between; align-items: center; }
.cw-logo[b-hsce7ozzwx] { max-width: 160px; }

.cw-back-link[b-hsce7ozzwx] {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid #e5e7eb; background: #ffffff; color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 18px; transition: all 0.15s ease;
}
.cw-back-link:hover[b-hsce7ozzwx] { background: #f3f4f6; color: #1a1a2e; }

.cw-hero[b-hsce7ozzwx] { padding: 4px 0 0; }
.cw-title-lg[b-hsce7ozzwx] { margin: 0; font-size: 26px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.02em; }
.cw-subtitle[b-hsce7ozzwx] { margin: 4px 0 0; font-size: 14px; color: #6b7280; font-weight: 500; }

.cw-loading[b-hsce7ozzwx] { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; gap: 16px; }
.cw-spinner[b-hsce7ozzwx] { width: 36px; height: 36px; border: 3px solid #e5e7eb; border-top-color: #95c11f; border-radius: 50%; animation: spin-b-hsce7ozzwx 0.7s linear infinite; }
@keyframes spin-b-hsce7ozzwx { to { transform: rotate(360deg); } }

.cw-empty[b-hsce7ozzwx] { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; gap: 8px; }
.cw-empty-icon[b-hsce7ozzwx] { font-size: 48px; color: #d1d5db; }
.cw-empty h3[b-hsce7ozzwx] { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0; }
.cw-empty p[b-hsce7ozzwx] { font-size: 14px; color: #6b7280; margin: 0; }

.cw-btn-primary[b-hsce7ozzwx] {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 14px; font-weight: 700; font-size: 15px;
    text-decoration: none; color: #ffffff;
    background: linear-gradient(135deg, #95c11f 0%, #7aa31a 100%);
    box-shadow: 0 4px 14px rgba(149, 193, 31, 0.25);
    transition: all 0.2s ease; border: none; cursor: pointer;
}
.cw-btn-primary:hover[b-hsce7ozzwx] { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(149, 193, 31, 0.35); color: #ffffff; }

/* Coming Soon Card */
.cw-coming-soon[b-hsce7ozzwx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    gap: 12px;
}

.cw-coming-icon[b-hsce7ozzwx] {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #95c11f;
}

.cw-coming-title[b-hsce7ozzwx] {
    margin: 0; font-size: 20px; font-weight: 800; color: #1a1a2e;
}

.cw-coming-message[b-hsce7ozzwx] {
    margin: 0; font-size: 14px; color: #6b7280; line-height: 1.5; max-width: 300px;
}

.cw-footer[b-hsce7ozzwx] { margin-top: auto; text-align: center; padding: 16px 0 0; }
.cw-footer small[b-hsce7ozzwx] { font-size: 12px; color: #9ca3af; }
/* /Components/Pages/ComingSoon/PrelaunchMessage.razor.rz.scp.css */
/* ===========================
   Pre-Launch Message — Light theme, blue palette
   =========================== */

.cw-page[b-ufrtumjok1] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-ufrtumjok1] { display: flex; justify-content: center; padding: 8px 0; }
.cw-logo[b-ufrtumjok1] { max-width: 160px; }

/* ===========================
   Banner (coming soon)
   =========================== */
.cw-banner[b-ufrtumjok1] {
    text-align: center;
    padding: 28px 20px 24px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(149, 193, 31, 0.25);
}

.cw-banner-icon[b-ufrtumjok1] {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px; color: #ffde14;
}

.cw-banner-title[b-ufrtumjok1] {
    margin: 0 0 8px;
    font-size: 24px; font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
}

.cw-banner-text[b-ufrtumjok1] {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 500;
}

/* ===========================
   Card Sections
   =========================== */
.cw-card[b-ufrtumjok1] {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 18px 16px; display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-card-header[b-ufrtumjok1] { display: flex; align-items: center; gap: 10px; }
.cw-card-icon[b-ufrtumjok1] { font-size: 20px; color: #95c11f; }
.cw-h2[b-ufrtumjok1] { margin: 0; font-size: 17px; font-weight: 700; color: #1a1a2e; }

/* ===========================
   Promo Text
   =========================== */
.cw-promo-text[b-ufrtumjok1] {
    margin: 0; font-size: 14px; color: #374151;
    line-height: 1.6; font-weight: 500;
}

.cw-highlight-pts[b-ufrtumjok1] {
    color: #95c11f; font-weight: 800;
    background: #f0f7e0; padding: 2px 8px; border-radius: 6px;
    white-space: nowrap;
}

/* ===========================
   Stats Row
   =========================== */
.cw-promo-stats[b-ufrtumjok1] {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.cw-stat[b-ufrtumjok1] {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    background: #f9fafb; border: 1px solid #f3f4f6; border-radius: 14px;
}

.cw-stat-icon[b-ufrtumjok1] { font-size: 22px; color: #95c11f; flex-shrink: 0; }

.cw-stat-info[b-ufrtumjok1] { display: flex; flex-direction: column; gap: 1px; }
.cw-stat-label[b-ufrtumjok1] { font-size: 11px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.cw-stat-value[b-ufrtumjok1] { font-size: 16px; font-weight: 800; color: #95c11f; }

/* ===========================
   Referral Code Row
   =========================== */
.cw-code-row[b-ufrtumjok1] {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 6px;
}

.cw-input[b-ufrtumjok1] {
    flex: 1; padding: 12px 14px;
    background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
    font-size: 15px; color: #1a1a2e; outline: none;
    font-family: inherit; transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.cw-code-input[b-ufrtumjok1] {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700; letter-spacing: 0.08em;
    text-align: center;
}

.cw-btn-share[b-ufrtumjok1] {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid #e5e7eb; background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #95c11f;
    cursor: pointer; transition: all 0.15s ease;
    flex-shrink: 0;
}
.cw-btn-share:hover[b-ufrtumjok1] { background: #f0f7e0; }

.cw-btn-whatsapp[b-ufrtumjok1] {
    background: #25D366; color: #ffffff; border-color: #25D366;
}
.cw-btn-whatsapp:hover[b-ufrtumjok1] { background: #1ebe57; }

.cw-hint[b-ufrtumjok1] { font-size: 12px; color: #9ca3af; font-weight: 500; margin: 0; }

/* ===========================
   CTA Row (Sign In / Sign Up)
   =========================== */
.cw-cta-row[b-ufrtumjok1] {
    display: flex; gap: 10px;
}

/* ===========================
   Buttons
   =========================== */
.cw-btn-primary[b-ufrtumjok1] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #95c11f, #7aa31a); color: #ffffff;
    border: none; border-radius: 12px; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.25);
    flex: 1;
}
.cw-btn-primary:hover[b-ufrtumjok1] { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(149, 193, 31, 0.35); color: #ffffff; }

.cw-btn-outline[b-ufrtumjok1] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px;
    background: #ffffff; color: #95c11f;
    border: 2px solid #95c11f; border-radius: 14px;
    font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
    flex: 1;
}
.cw-btn-outline:hover[b-ufrtumjok1] { background: #f4f9e6; color: #95c11f; }

.cw-btn-full[b-ufrtumjok1] { width: 100%; }

.cw-btn-link[b-ufrtumjok1] {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px; color: #95c11f; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: color 0.15s ease;
}
.cw-btn-link:hover[b-ufrtumjok1] { text-decoration: underline; }

/* ===========================
   Nav Row
   =========================== */
.cw-nav-row[b-ufrtumjok1] {
    display: flex; flex-direction: column; gap: 8px;
}

/* ===========================
   Empty / Loading / Footer
   =========================== */
.cw-empty[b-ufrtumjok1] {
    text-align: center; padding: 40px 20px;
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cw-empty-icon[b-ufrtumjok1] { font-size: 40px; color: #d1d5db; display: block; margin-bottom: 12px; }
.cw-empty h3[b-ufrtumjok1] { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: #374151; }
.cw-empty p[b-ufrtumjok1] { margin: 0; font-size: 13px; color: #9ca3af; }

.cw-loading[b-ufrtumjok1] {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; background: #f7f8fa;
}
.cw-loading p[b-ufrtumjok1] { font-size: 14px; color: #6b7280; margin: 0; }

.cw-spinner[b-ufrtumjok1] {
    width: 40px; height: 40px;
    border: 4px solid #e5e7eb; border-top-color: #95c11f;
    border-radius: 50%; animation: cwSpin-b-ufrtumjok1 0.8s linear infinite;
}

.cw-footer[b-ufrtumjok1] { text-align: center; padding: 16px 0 8px; color: #9ca3af; }

@keyframes cwSpin-b-ufrtumjok1 { to { transform: rotate(360deg); } }

@media (min-width: 540px) {
    .cw-page[b-ufrtumjok1] { max-width: 540px; padding: 24px 20px 48px; }
}
/* /Components/Pages/ComingSoon/PrelaunchWelcome.razor.rz.scp.css */
/* ===========================
   Pre-Launch Welcome — Light theme, blue palette
   =========================== */

.cw-page[b-aq15jpfcpr] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-aq15jpfcpr] {
    display: flex; justify-content: center; padding: 8px 0;
}
.cw-logo[b-aq15jpfcpr] { max-width: 160px; }

.cw-hero[b-aq15jpfcpr] { padding: 4px 0 0; }
.cw-title-lg[b-aq15jpfcpr] { margin: 0; font-size: 26px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.02em; }
.cw-title-accent[b-aq15jpfcpr] { margin: 2px 0 0; font-size: 22px; font-weight: 800; color: #95c11f; letter-spacing: -0.02em; }
.cw-subtitle[b-aq15jpfcpr] { margin: 4px 0 0; font-size: 14px; color: #6b7280; font-weight: 500; }

/* ===========================
   Card Sections
   =========================== */
.cw-card[b-aq15jpfcpr] {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 18px 16px; display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-card-header[b-aq15jpfcpr] {
    display: flex; align-items: center; gap: 10px;
}

.cw-card-icon[b-aq15jpfcpr] {
    font-size: 20px; color: #95c11f;
}

.cw-h2[b-aq15jpfcpr] {
    margin: 0; font-size: 17px; font-weight: 700; color: #1a1a2e;
}

/* ===========================
   Alerts
   =========================== */
.cw-alert[b-aq15jpfcpr] {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 12px;
    font-size: 13px; font-weight: 600;
}

.cw-alert-success[b-aq15jpfcpr] {
    background: #f4f9e6; color: #95c11f; border: 1px solid #d9eaa3;
}

.cw-alert-danger[b-aq15jpfcpr] {
    background: #fef2f2; color: #dc2626; border: 1px solid #fecaca;
}

/* ===========================
   Input Group (code apply)
   =========================== */
.cw-input-group[b-aq15jpfcpr] {
    display: flex; gap: 8px;
}

.cw-input[b-aq15jpfcpr] {
    flex: 1; padding: 12px 14px;
    background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
    font-size: 15px; color: #1a1a2e; outline: none;
    font-family: inherit; transition: border-color 0.15s ease;
    box-sizing: border-box;
}
.cw-input:focus[b-aq15jpfcpr] { border-color: #95c11f; background: #ffffff; }
.cw-input:disabled[b-aq15jpfcpr] { background: #f3f4f6; color: #9ca3af; cursor: not-allowed; }

.cw-hint[b-aq15jpfcpr] {
    font-size: 12px; color: #9ca3af; font-weight: 500; margin: 0;
}

/* ===========================
   Features (static rows)
   =========================== */
.cw-features[b-aq15jpfcpr] {
    display: flex; flex-direction: column; gap: 10px;
}

.cw-feature-row-static[b-aq15jpfcpr] {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    background: #f9fafb; border: 1px solid #f3f4f6; border-radius: 14px;
}

.cw-feature-icon[b-aq15jpfcpr] {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
}

.cw-icon-blue[b-aq15jpfcpr] { background: #f0f7e0; color: #95c11f; }
.cw-icon-gold[b-aq15jpfcpr] { background: #fff8e1; color: #f59e0b; }
.cw-icon-green[b-aq15jpfcpr] { background: #e8f5e9; color: #2e7d32; }

.cw-feature-info[b-aq15jpfcpr] {
    display: flex; flex-direction: column; gap: 2px;
    flex: 1; min-width: 0;
}
.cw-feature-title[b-aq15jpfcpr] { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.cw-feature-desc[b-aq15jpfcpr] { font-size: 12px; color: #6b7280; line-height: 1.4; }

/* ===========================
   Steps
   =========================== */
.cw-steps[b-aq15jpfcpr] {
    display: flex; flex-direction: column; gap: 12px;
}

.cw-step[b-aq15jpfcpr] {
    display: flex; align-items: flex-start; gap: 12px;
}

.cw-step-number[b-aq15jpfcpr] {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    color: #ffffff; font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.cw-step-info[b-aq15jpfcpr] {
    display: flex; flex-direction: column; gap: 2px;
    padding-top: 4px;
}
.cw-step-info strong[b-aq15jpfcpr] { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.cw-step-info span[b-aq15jpfcpr] { font-size: 12px; color: #6b7280; line-height: 1.4; }

/* ===========================
   Referral Code Row
   =========================== */
.cw-code-row[b-aq15jpfcpr] {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 6px;
}

.cw-code-input[b-aq15jpfcpr] {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700; letter-spacing: 0.08em;
    text-align: center;
}

.cw-btn-share[b-aq15jpfcpr] {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid #e5e7eb; background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #95c11f;
    cursor: pointer; transition: all 0.15s ease;
    flex-shrink: 0;
}
.cw-btn-share:hover[b-aq15jpfcpr] { background: #f0f7e0; }

.cw-btn-whatsapp[b-aq15jpfcpr] {
    background: #25D366; color: #ffffff; border-color: #25D366;
}
.cw-btn-whatsapp:hover[b-aq15jpfcpr] { background: #1ebe57; }

/* ===========================
   Toast
   =========================== */
.cw-toast[b-aq15jpfcpr] {
    position: relative;
    animation: cwSlideIn-b-aq15jpfcpr 0.3s ease;
}

.cw-toast-body[b-aq15jpfcpr] {
    display: flex; flex-direction: column; gap: 1px; flex: 1;
}
.cw-toast-body small[b-aq15jpfcpr] { font-weight: 500; opacity: 0.8; }

.cw-toast-close[b-aq15jpfcpr] {
    width: 28px; height: 28px; border-radius: 8px;
    background: transparent; border: none;
    display: flex; align-items: center; justify-content: center;
    color: inherit; font-size: 12px; cursor: pointer;
    opacity: 0.6; transition: opacity 0.15s ease;
}
.cw-toast-close:hover[b-aq15jpfcpr] { opacity: 1; }

/* ===========================
   Buttons
   =========================== */
.cw-btn-primary[b-aq15jpfcpr] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #95c11f, #7aa31a); color: #ffffff;
    border: none; border-radius: 12px; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.25);
    white-space: nowrap; flex-shrink: 0;
}
.cw-btn-primary:hover:not(:disabled)[b-aq15jpfcpr] { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(149, 193, 31, 0.35); color: #ffffff; }
.cw-btn-primary:disabled[b-aq15jpfcpr] { opacity: 0.4; cursor: not-allowed; transform: none; }

.cw-btn-outline[b-aq15jpfcpr] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px;
    background: #ffffff; color: #95c11f;
    border: 2px solid #95c11f; border-radius: 14px;
    font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
}
.cw-btn-outline:hover[b-aq15jpfcpr] { background: #f4f9e6; color: #95c11f; }

.cw-btn-full[b-aq15jpfcpr] { width: 100%; }

/* ===========================
   Empty / Loading / Footer
   =========================== */
.cw-empty[b-aq15jpfcpr] {
    text-align: center; padding: 40px 20px;
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cw-empty-icon[b-aq15jpfcpr] { font-size: 40px; color: #d1d5db; display: block; margin-bottom: 12px; }
.cw-empty h3[b-aq15jpfcpr] { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: #374151; }
.cw-empty p[b-aq15jpfcpr] { margin: 0; font-size: 13px; color: #9ca3af; }

.cw-loading[b-aq15jpfcpr] {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; background: #f7f8fa;
}
.cw-loading p[b-aq15jpfcpr] { font-size: 14px; color: #6b7280; margin: 0; }

.cw-spinner[b-aq15jpfcpr] {
    width: 40px; height: 40px;
    border: 4px solid #e5e7eb; border-top-color: #95c11f;
    border-radius: 50%; animation: cwSpin-b-aq15jpfcpr 0.8s linear infinite;
}

.cw-footer[b-aq15jpfcpr] { text-align: center; padding: 16px 0 8px; color: #9ca3af; }

@keyframes cwSpin-b-aq15jpfcpr { to { transform: rotate(360deg); } }
@keyframes cwSlideIn-b-aq15jpfcpr { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 540px) {
    .cw-page[b-aq15jpfcpr] { max-width: 540px; padding: 24px 20px 48px; }
}
/* /Components/Pages/Contact/Contact.razor.rz.scp.css */
/* ===========================
   Contact Page — Company.WebAdmin
   Prefix: cwc-
   =========================== */

.cwc-page[b-tremnprmx7] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===========================
   Hero
   =========================== */
.cwc-hero[b-tremnprmx7] {
    text-align: center;
    padding: 32px 20px 24px;
    background: linear-gradient(135deg, #7ab800, #95c11f);
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(122, 184, 0, 0.25);
}

.cwc-hero-icon[b-tremnprmx7] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #ffffff;
}

.cwc-title[b-tremnprmx7] {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cwc-subtitle[b-tremnprmx7] {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 500;
    max-width: 300px;
}

/* ===========================
   Section Groups
   =========================== */
.cwc-section[b-tremnprmx7] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cwc-section-title[b-tremnprmx7] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #4a7c10;
    margin: 0;
    padding: 0 2px;
}

.cwc-section-title i[b-tremnprmx7] {
    font-size: 16px;
}

/* ===========================
   Contact Cards
   =========================== */
.cwc-cards[b-tremnprmx7] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cwc-card[b-tremnprmx7] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.15s ease;
}

.cwc-card-link[b-tremnprmx7] {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.cwc-card-link:hover[b-tremnprmx7] {
    border-color: #95c11f;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.15);
    transform: translateY(-1px);
}

.cwc-card-icon[b-tremnprmx7] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cwc-icon-green[b-tremnprmx7] {
    background: #ecfdf5;
    color: #059669;
}

.cwc-icon-pink[b-tremnprmx7] {
    background: #fdf2f8;
    color: #db2777;
}

.cwc-icon-blue[b-tremnprmx7] {
    background: #eff6ff;
    color: #2563eb;
}

.cwc-icon-orange[b-tremnprmx7] {
    background: #fff7ed;
    color: #ea580c;
}

.cwc-icon-gray[b-tremnprmx7] {
    background: #f3f4f6;
    color: #6b7280;
}

.cwc-card-body[b-tremnprmx7] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cwc-card-body strong[b-tremnprmx7] {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.cwc-card-body span[b-tremnprmx7] {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cwc-card-arrow[b-tremnprmx7] {
    color: #9ca3af;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===========================
   States
   =========================== */
.cwc-loading[b-tremnprmx7] {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.cwc-spinner[b-tremnprmx7] {
    width: 36px;
    height: 36px;
    border: 3px solid #e5e7eb;
    border-top-color: #95c11f;
    border-radius: 50%;
    animation: cwc-spin-b-tremnprmx7 0.6s linear infinite;
    margin: 0 auto 12px;
}

@keyframes cwc-spin-b-tremnprmx7 {
    to { transform: rotate(360deg); }
}

.cwc-empty[b-tremnprmx7] {
    text-align: center;
    padding: 48px 20px;
    color: #6b7280;
}

.cwc-empty-icon[b-tremnprmx7] {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.4;
}

.cwc-empty h3[b-tremnprmx7] {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.cwc-empty p[b-tremnprmx7] {
    margin: 0;
    font-size: 14px;
}
/* /Components/Pages/Coupons/Coupons.razor.rz.scp.css */
/* ===========================
   Coupons — Light theme, mobile-first
   =========================== */

.cw-page[b-ehac9yokor] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-ehac9yokor] { display: flex; justify-content: center; padding: 8px 0; }
.cw-header-logged[b-ehac9yokor] { justify-content: space-between; align-items: center; }
.cw-logo[b-ehac9yokor] { max-width: 160px; }

.cw-back-link[b-ehac9yokor] {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid #e5e7eb; background: #ffffff; color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 18px; transition: all 0.15s ease;
}
.cw-back-link:hover[b-ehac9yokor] { background: #f3f4f6; color: #1a1a2e; }

.cw-hero[b-ehac9yokor] { padding: 4px 0 0; }
.cw-title-lg[b-ehac9yokor] { margin: 0; font-size: 26px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.02em; }
.cw-subtitle[b-ehac9yokor] { margin: 4px 0 0; font-size: 14px; color: #6b7280; font-weight: 500; }

.cw-loading[b-ehac9yokor] { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; gap: 16px; }
.cw-spinner[b-ehac9yokor] { width: 36px; height: 36px; border: 3px solid #e5e7eb; border-top-color: #95c11f; border-radius: 50%; animation: spin-b-ehac9yokor 0.7s linear infinite; }
@keyframes spin-b-ehac9yokor { to { transform: rotate(360deg); } }

.cw-empty[b-ehac9yokor] { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; gap: 8px; }
.cw-empty-icon[b-ehac9yokor] { font-size: 48px; color: #d1d5db; }
.cw-empty h3[b-ehac9yokor] { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0; }
.cw-empty p[b-ehac9yokor] { font-size: 14px; color: #6b7280; margin: 0; }

/* ===========================
   Tabs
   =========================== */
.cw-tabs[b-ehac9yokor] {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cw-tabs[b-ehac9yokor]::-webkit-scrollbar { display: none; }

.cw-tab[b-ehac9yokor] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.cw-tab i[b-ehac9yokor] { font-size: 18px; }
.cw-tab:hover[b-ehac9yokor] { border-color: #d1d5db; }
.cw-tab.active[b-ehac9yokor] {
    background: linear-gradient(135deg, #f0f7e0, #e8f5cc);
    border-color: #95c11f;
    color: #4d6c0f;
}

/* ===========================
   Alerts
   =========================== */
.cw-alert[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}
.cw-alert-success[b-ehac9yokor] { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.cw-alert-danger[b-ehac9yokor] { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===========================
   Buttons
   =========================== */
.cw-btn-primary[b-ehac9yokor] {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 14px; font-weight: 700; font-size: 15px;
    text-decoration: none; color: #ffffff;
    background: linear-gradient(135deg, #95c11f 0%, #7aa31a 100%);
    box-shadow: 0 4px 14px rgba(149, 193, 31, 0.25);
    transition: all 0.2s ease; border: none; cursor: pointer;
}
.cw-btn-primary:hover[b-ehac9yokor] { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(149, 193, 31, 0.35); color: #ffffff; }
.cw-btn-primary:disabled[b-ehac9yokor] { opacity: 0.6; cursor: not-allowed; transform: none; }

.cw-btn-full[b-ehac9yokor] { width: 100%; justify-content: center; }

.cw-btn-link[b-ehac9yokor] {
    background: none; border: none; color: #2563eb; font-size: 13px;
    font-weight: 600; cursor: pointer; padding: 4px 8px;
    text-decoration: underline; transition: color 0.15s;
}
.cw-btn-link:hover[b-ehac9yokor] { color: #1d4ed8; }

.cw-btn-spinner[b-ehac9yokor] {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #ffffff;
    border-radius: 50%; animation: spin-b-ehac9yokor 0.6s linear infinite;
}

/* ===========================
   Forms
   =========================== */
.cw-form-card[b-ehac9yokor] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cw-section-head[b-ehac9yokor] { padding: 0; }
.cw-h2[b-ehac9yokor] { margin: 0; font-size: 18px; font-weight: 800; color: #1a1a2e; }

.cw-form-group[b-ehac9yokor] { display: flex; flex-direction: column; gap: 4px; }

.cw-form-label[b-ehac9yokor] { font-size: 13px; font-weight: 700; color: #374151; }

.cw-form-input[b-ehac9yokor] {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #1a1a2e;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100%;
    box-sizing: border-box;
}
.cw-form-input:focus[b-ehac9yokor] { outline: none; border-color: #95c11f; box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.12); }

.cw-form-hint[b-ehac9yokor] { font-size: 11px; color: #9ca3af; }
.cw-form-error[b-ehac9yokor] { font-size: 12px; color: #dc2626; }

.cw-form-row[b-ehac9yokor] {
    display: flex;
    gap: 12px;
}
.cw-form-half[b-ehac9yokor] { flex: 1; min-width: 0; }

/* ===========================
   Info Banner
   =========================== */
.cw-info-banner[b-ehac9yokor] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #92400e;
    line-height: 1.4;
}
.cw-info-banner i[b-ehac9yokor] { font-size: 18px; color: #f59e0b; flex-shrink: 0; margin-top: 1px; }
.cw-info-banner p[b-ehac9yokor] { margin: 0; }

/* ===========================
   Preview
   =========================== */
.cw-preview[b-ehac9yokor] {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cw-preview-label[b-ehac9yokor] {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
}

.cw-preview-coupon[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
}

.cw-preview-badge[b-ehac9yokor] {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    display: flex; align-items: center; justify-content: center;
    color: #ffffff; font-size: 18px; flex-shrink: 0;
}

.cw-preview-body[b-ehac9yokor] {
    display: flex; flex-direction: column; gap: 2px;
}
.cw-preview-body strong[b-ehac9yokor] { font-size: 15px; color: #1a1a2e; }
.cw-preview-body span[b-ehac9yokor] { font-size: 12px; color: #6b7280; }

/* ===========================
   Coupon Cards
   =========================== */
.cw-coupon-card[b-ehac9yokor] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.15s;
}
.cw-coupon-card:hover[b-ehac9yokor] { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.cw-coupon-inactive[b-ehac9yokor] { opacity: 0.6; }

.cw-coupon-top[b-ehac9yokor] {
    display: flex;
    align-items: stretch;
}

.cw-coupon-left[b-ehac9yokor] {
    width: 48px;
    background: linear-gradient(180deg, #95c11f, #7aa31a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cw-coupon-badge[b-ehac9yokor] { color: #ffffff; font-size: 20px; }

.cw-coupon-body[b-ehac9yokor] {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cw-coupon-header[b-ehac9yokor] { display: flex; align-items: center; gap: 8px; }
.cw-coupon-title[b-ehac9yokor] { margin: 0; font-size: 15px; font-weight: 800; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cw-coupon-desc[b-ehac9yokor] { margin: 0; font-size: 12px; color: #6b7280; line-height: 1.3; }

.cw-coupon-meta[b-ehac9yokor] {
    display: flex;
    gap: 14px;
    margin-top: 4px;
    font-size: 11px;
    color: #9ca3af;
}
.cw-coupon-meta i[b-ehac9yokor] { font-size: 12px; margin-right: 2px; }

/* Action buttons — bottom row */
.cw-coupon-actions[b-ehac9yokor] {
    display: flex;
    border-top: 1px solid #f3f4f6;
}

.cw-action-btn[b-ehac9yokor] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}
.cw-action-btn i[b-ehac9yokor] {
    font-size: 17px;
    line-height: 1;
}
.cw-action-btn span[b-ehac9yokor] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.cw-action-btn + .cw-action-btn[b-ehac9yokor] {
    border-left: 1px solid #f3f4f6;
}

/* Share — blue */
.cw-action-share[b-ehac9yokor] {
    color: #2563eb;
}
.cw-action-share:hover[b-ehac9yokor] {
    background: #eff6ff;
    color: #1d4ed8;
}

/* Edit — amber */
.cw-action-edit[b-ehac9yokor] {
    color: #d97706;
}
.cw-action-edit:hover[b-ehac9yokor] {
    background: #fffbeb;
    color: #b45309;
}

/* Claims — green */
.cw-action-claims[b-ehac9yokor] {
    color: #059669;
}
.cw-action-claims:hover[b-ehac9yokor] {
    background: #ecfdf5;
    color: #047857;
}

/* Delete — red */
.cw-action-delete[b-ehac9yokor] {
    color: #dc2626;
}
.cw-action-delete:hover[b-ehac9yokor] {
    background: #fef2f2;
    color: #b91c1c;
}

/* ===========================
   Tags / Badges
   =========================== */
.cw-tag[b-ehac9yokor] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.cw-tag-preview[b-ehac9yokor] { background: #faf5ff; color: #7c3aed; }
.cw-tag-active[b-ehac9yokor] { background: #f0fdf4; color: #166534; }
.cw-tag-inactive[b-ehac9yokor] { background: #f3f4f6; color: #6b7280; }
.cw-tag-expired[b-ehac9yokor] { background: #fef2f2; color: #991b1b; }
.cw-tag-scheduled[b-ehac9yokor] { background: #eff6ff; color: #1d4ed8; }
.cw-tag-claimed[b-ehac9yokor] { background: #fffbeb; color: #92400e; }
.cw-tag-used[b-ehac9yokor] { background: #f0fdf4; color: #166534; }
.cw-tag-private[b-ehac9yokor] { background: #fef3c7; color: #92400e; gap: 3px; display: inline-flex; align-items: center; }

/* ===========================
   Claimed Toolbar
   =========================== */
.cw-claimed-toolbar[b-ehac9yokor] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    margin-bottom: 12px;
}
.cw-claimed-count[b-ehac9yokor] {
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cw-claimed-count i[b-ehac9yokor] { font-size: 15px; }
.cw-refresh-btn[b-ehac9yokor] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: none;
    border-radius: 8px;
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}
.cw-refresh-btn:hover[b-ehac9yokor] { background: #d97706; }
.cw-refresh-btn:disabled[b-ehac9yokor] { opacity: 0.6; cursor: not-allowed; }
.cw-refresh-btn i[b-ehac9yokor] { font-size: 14px; }

/* ===========================
   Empty State
   =========================== */
.cw-empty-state[b-ehac9yokor] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    gap: 10px;
}

.cw-empty-icon-wrap[b-ehac9yokor] {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #95c11f;
}

.cw-empty-state h3[b-ehac9yokor] { margin: 0; font-size: 17px; font-weight: 800; color: #1a1a2e; }
.cw-empty-state p[b-ehac9yokor] { margin: 0; font-size: 13px; color: #6b7280; max-width: 260px; }

/* ===========================
   Redemption Cards
   =========================== */
.cw-redemption-card[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-redemption-avatar[b-ehac9yokor] {
    width: 40px; height: 40px; border-radius: 50%;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #9ca3af; flex-shrink: 0;
}

.cw-redemption-info[b-ehac9yokor] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.cw-redemption-info strong[b-ehac9yokor] { font-size: 14px; color: #1a1a2e; }
.cw-redemption-email[b-ehac9yokor] { font-size: 12px; color: #6b7280; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cw-redemption-coupon[b-ehac9yokor] { font-size: 11px; color: #9ca3af; }
.cw-redemption-coupon i[b-ehac9yokor] { margin-right: 3px; }
.cw-redemption-date[b-ehac9yokor] { font-size: 11px; color: #9ca3af; }

.cw-redemption-status[b-ehac9yokor] { flex-shrink: 0; }

/* ===========================
   Filter Bar
   =========================== */
.cw-filter-bar[b-ehac9yokor] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #eef6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    font-size: 13px;
    color: #1e40af;
}
.cw-filter-text[b-ehac9yokor] { display: flex; align-items: center; gap: 6px; }
.cw-filter-text i[b-ehac9yokor] { font-size: 14px; }

/* ===========================
   Footer
   =========================== */
.cw-footer[b-ehac9yokor] { margin-top: auto; text-align: center; padding: 16px 0 0; }
.cw-footer small[b-ehac9yokor] { font-size: 12px; color: #9ca3af; }

/* ===========================
   Image Upload
   =========================== */
.cw-upload-area[b-ehac9yokor] {
    border-radius: 12px;
    overflow: hidden;
}

.cw-upload-dropzone[b-ehac9yokor] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px 16px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}
.cw-upload-dropzone:hover[b-ehac9yokor] {
    border-color: #95c11f;
    background: #fafff0;
}
.cw-upload-dropzone i[b-ehac9yokor] {
    font-size: 32px;
    color: #95c11f;
}
.cw-upload-dropzone span[b-ehac9yokor] {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.cw-upload-dropzone small[b-ehac9yokor] {
    font-size: 11px;
    color: #9ca3af;
}
.cw-upload-dropzone input[type="file"][b-ehac9yokor] {
    display: none;
}

.cw-upload-preview[b-ehac9yokor] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.cw-upload-preview img[b-ehac9yokor] {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.cw-upload-preview video[b-ehac9yokor],
.cw-upload-preview-media[b-ehac9yokor] {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}
.cw-upload-remove[b-ehac9yokor] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.cw-upload-remove:hover[b-ehac9yokor] {
    background: rgba(220, 38, 38, 0.85);
}

.cw-preview-image[b-ehac9yokor] {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

video.cw-preview-image[b-ehac9yokor] {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ===========================
   Tab Badge
   =========================== */
.cw-tab-badge[b-ehac9yokor] {
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 16px;
}

.cw-tab.active .cw-tab-badge[b-ehac9yokor] {
    background: #ffffff;
    color: #4d6c0f;
}

/* ===========================
   QR Code Scan Section
   =========================== */
.cw-qr-scan-section[b-ehac9yokor] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-qr-scan-header[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cw-qr-scan-header i[b-ehac9yokor] {
    font-size: 22px;
    color: #164272;
}

.cw-qr-scan-header h3[b-ehac9yokor] {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.cw-qr-scan-hint[b-ehac9yokor] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.cw-qr-scan-form[b-ehac9yokor] {
    margin-top: 4px;
}

.cw-qr-scan-input-wrap[b-ehac9yokor] {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.cw-qr-scan-input[b-ehac9yokor] {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #1a1a2e;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.15s ease;
}

.cw-qr-scan-input:focus[b-ehac9yokor] {
    border-color: #164272;
    background: #ffffff;
}

.cw-qr-scan-input:disabled[b-ehac9yokor] {
    opacity: 0.6;
    cursor: not-allowed;
}

.cw-qr-scan-btn[b-ehac9yokor] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 20px;
    min-width: 80px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #164272 0%, #1a5694 100%);
    cursor: pointer;
    transition: all 0.15s ease;
}

.cw-qr-scan-btn:hover:not(:disabled)[b-ehac9yokor] {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(22, 66, 114, 0.3);
}

.cw-qr-scan-btn:disabled[b-ehac9yokor] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* QR Toast */
.cw-qr-toast[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    animation: cw-toast-in-b-ehac9yokor 0.3s ease;
}

.cw-qr-toast-success[b-ehac9yokor] {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.cw-qr-toast-danger[b-ehac9yokor] {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.cw-qr-toast i[b-ehac9yokor] {
    font-size: 18px;
    flex-shrink: 0;
}

@keyframes cw-toast-in-b-ehac9yokor {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Pending Coupon Redeems
   =========================== */
.cw-pending-list[b-ehac9yokor] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cw-pending-card[b-ehac9yokor] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-pending-header[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cw-pending-avatar[b-ehac9yokor] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cw-pending-info[b-ehac9yokor] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cw-pending-info strong[b-ehac9yokor] {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cw-pending-info small[b-ehac9yokor] {
    font-size: 12px;
    color: #9ca3af;
}

.cw-pending-badge[b-ehac9yokor] {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.cw-badge-claimed[b-ehac9yokor] {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.cw-badge-pending[b-ehac9yokor] {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.cw-pending-coupon-body[b-ehac9yokor] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

.cw-pending-coupon-img[b-ehac9yokor] {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

video.cw-pending-coupon-img[b-ehac9yokor] {
    background: #000;
}

.cw-pending-coupon-info[b-ehac9yokor] {
    flex: 1;
    min-width: 0;
}

.cw-pending-coupon-title[b-ehac9yokor] {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.cw-pending-coupon-desc[b-ehac9yokor] {
    margin: 0 0 8px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cw-pending-coupon-meta[b-ehac9yokor] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cw-pending-coupon-meta span[b-ehac9yokor] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
}

.cw-pending-coupon-meta i[b-ehac9yokor] {
    font-size: 12px;
}

.cw-pending-actions[b-ehac9yokor] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cw-pending-btn[b-ehac9yokor] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
}

.cw-pending-btn:disabled[b-ehac9yokor] {
    opacity: 0.5;
    cursor: not-allowed;
}

.cw-pending-approve[b-ehac9yokor] {
    background: #059669;
    color: #ffffff;
}

.cw-pending-approve:hover:not(:disabled)[b-ehac9yokor] {
    background: #047857;
}

.cw-pending-reject[b-ehac9yokor] {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.cw-pending-reject:hover:not(:disabled)[b-ehac9yokor] {
    background: #fef2f2;
}

/* ===========================
   Responsive
   =========================== */
@media (min-width: 540px) {
    .cw-page[b-ehac9yokor] { max-width: 540px; padding: 24px 20px 48px; }
}

/* ===========================
   Share Modal
   =========================== */
.cw-modal-sm[b-ehac9yokor] { max-width: 380px; }

.cw-share-label[b-ehac9yokor] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.cw-share-code-row[b-ehac9yokor] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
}

.cw-share-code[b-ehac9yokor] {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    word-break: break-all;
    line-height: 1.4;
}

.cw-share-btn[b-ehac9yokor] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.15s;
}
.cw-share-btn:hover[b-ehac9yokor] { background: #f3f4f6; color: #1a1a2e; }

.cw-share-whatsapp[b-ehac9yokor] { color: #25d366; border-color: #25d366; }
.cw-share-whatsapp:hover[b-ehac9yokor] { background: #25d366; color: #ffffff; }

.cw-share-copied[b-ehac9yokor] {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   Edit Modal
   =========================== */
.cw-modal-overlay[b-ehac9yokor] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    padding: 16px;
    animation: cw-fade-in-b-ehac9yokor 0.2s ease;
}

.cw-modal[b-ehac9yokor] {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 16px 24px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: cw-slide-up-b-ehac9yokor 0.25s ease;
}

.cw-modal-header[b-ehac9yokor] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cw-modal-close[b-ehac9yokor] {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
}
.cw-modal-close:hover[b-ehac9yokor] { background: #f3f4f6; color: #1a1a2e; }

@keyframes cw-fade-in-b-ehac9yokor {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cw-slide-up-b-ehac9yokor {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* /Components/Pages/Dashboard/Dashboard.razor.rz.scp.css */
/* ===========================
   Dashboard Page
   Light theme, mobile-first
   =========================== */

.db-page[b-q39cwp9elc] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.db-header[b-q39cwp9elc] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-back-btn[b-q39cwp9elc] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    -webkit-tap-highlight-color: transparent;
}

.db-back-btn:hover[b-q39cwp9elc] {
    background: #f3f4f6;
    color: #1a1a2e;
}

.db-back-btn:active[b-q39cwp9elc] {
    transform: scale(0.93);
}

.db-header-info[b-q39cwp9elc] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.db-title[b-q39cwp9elc] {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.db-subtitle[b-q39cwp9elc] {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===========================
   Tabs
   =========================== */
.db-tabs[b-q39cwp9elc] {
    display: flex;
    gap: 6px;
    background: #f1f3f5;
    border-radius: 12px;
    padding: 4px;
}

.db-tab[b-q39cwp9elc] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.db-tab i[b-q39cwp9elc] {
    font-size: 15px;
}

.db-tab:hover[b-q39cwp9elc] {
    color: #374151;
    background: rgba(255, 255, 255, 0.5);
}

.db-tab-active[b-q39cwp9elc] {
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.db-tab-active:hover[b-q39cwp9elc] {
    background: #ffffff;
    color: #1a1a2e;
}

/* ===========================
   Recent Activity Banner
   =========================== */
.db-recent-banner[b-q39cwp9elc] {
    display: flex;
    gap: 10px;
}

.db-recent-item[b-q39cwp9elc] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 12px;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.db-recent-item i[b-q39cwp9elc] {
    font-size: 16px;
    color: #95c11f;
    flex-shrink: 0;
}

.db-recent-item strong[b-q39cwp9elc] {
    font-weight: 800;
    color: #1a1a2e;
}

/* ===========================
   Stats Grid (2x2)
   =========================== */
.db-stats-grid[b-q39cwp9elc] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.db-stat-card[b-q39cwp9elc] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.db-stat-icon[b-q39cwp9elc] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.db-stat-icon-blue[b-q39cwp9elc] {
    background: #e3f2fd;
    color: #1976d2;
}

.db-stat-icon-green[b-q39cwp9elc] {
    background: #f0f7e0;
    color: #95c11f;
}

.db-stat-icon-gray[b-q39cwp9elc] {
    background: #f3f4f6;
    color: #9ca3af;
}

.db-stat-icon-purple[b-q39cwp9elc] {
    background: #f3e8ff;
    color: #7c3aed;
}

.db-stat-info[b-q39cwp9elc] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.db-stat-value[b-q39cwp9elc] {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    line-height: 1;
}

.db-stat-label[b-q39cwp9elc] {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===========================
   Wide Stat Cards (Claimed / Redeemed)
   =========================== */
.db-stat-wide-grid[b-q39cwp9elc] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.db-stat-wide-card[b-q39cwp9elc] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.db-stat-wide-header[b-q39cwp9elc] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.db-stat-wide-icon[b-q39cwp9elc] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.db-stat-wide-orange .db-stat-wide-icon[b-q39cwp9elc] {
    background: #fff7ed;
    color: #ea580c;
}

.db-stat-wide-green .db-stat-wide-icon[b-q39cwp9elc] {
    background: #f0f7e0;
    color: #95c11f;
}

.db-stat-wide-title[b-q39cwp9elc] {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.db-stat-wide-body[b-q39cwp9elc] {
    display: flex;
    align-items: center;
}

.db-stat-wide-metric[b-q39cwp9elc] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.db-stat-wide-value[b-q39cwp9elc] {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    line-height: 1;
}

.db-stat-wide-desc[b-q39cwp9elc] {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
}

.db-stat-wide-divider[b-q39cwp9elc] {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* ===========================
   Quantity Overview Card
   =========================== */
.db-quantity-card[b-q39cwp9elc] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.db-quantity-header[b-q39cwp9elc] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.db-quantity-header i[b-q39cwp9elc] {
    color: #95c11f;
    font-size: 16px;
}

.db-quantity-bar-wrap[b-q39cwp9elc] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.db-quantity-bar-bg[b-q39cwp9elc] {
    width: 100%;
    height: 10px;
    background: #f3f4f6;
    border-radius: 5px;
    overflow: hidden;
}

.db-quantity-bar-fill[b-q39cwp9elc] {
    height: 100%;
    background: linear-gradient(90deg, #95c11f, #7aa31a);
    border-radius: 5px;
    transition: width 0.5s ease;
    min-width: 0;
}

.db-quantity-labels[b-q39cwp9elc] {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
}

/* ===========================
   Most / Least Attractive
   =========================== */
.db-attractive-grid[b-q39cwp9elc] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.db-attractive-card[b-q39cwp9elc] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.db-attractive-badge[b-q39cwp9elc] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 6px;
    width: fit-content;
}

.db-attractive-top .db-attractive-badge[b-q39cwp9elc] {
    background: #fef3c7;
    color: #b45309;
}

.db-attractive-low .db-attractive-badge[b-q39cwp9elc] {
    background: #f3f4f6;
    color: #6b7280;
}

.db-attractive-title[b-q39cwp9elc] {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.db-attractive-meta[b-q39cwp9elc] {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
}

/* ===========================
   Empty State
   =========================== */
.db-empty-state[b-q39cwp9elc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
}

.db-empty-state i[b-q39cwp9elc] {
    font-size: 48px;
    color: #d1d5db;
}

.db-empty-state p[b-q39cwp9elc] {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.db-btn-primary[b-q39cwp9elc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.25);
    -webkit-tap-highlight-color: transparent;
}

.db-btn-primary:hover[b-q39cwp9elc] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(149, 193, 31, 0.35);
    color: #ffffff;
}

/* ===========================
   Coming Soon (Rewards tab)
   =========================== */
.db-coming-soon[b-q39cwp9elc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 20px;
    text-align: center;
}

.db-coming-soon-icon[b-q39cwp9elc] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f7e0, #d9eaa3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #95c11f;
}

.db-coming-soon h3[b-q39cwp9elc] {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
}

.db-coming-soon p[b-q39cwp9elc] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 280px;
}

/* ===========================
   Loading
   =========================== */
.db-loading[b-q39cwp9elc] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #f7f8fa;
}

.db-loading p[b-q39cwp9elc] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.db-spinner[b-q39cwp9elc] {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top-color: #95c11f;
    border-radius: 50%;
    animation: dbSpin-b-q39cwp9elc 0.8s linear infinite;
}

@keyframes dbSpin-b-q39cwp9elc {
    to { transform: rotate(360deg); }
}

/* Footer */
.db-footer[b-q39cwp9elc] {
    text-align: center;
    padding: 16px 0 8px;
    color: #9ca3af;
}

/* ===========================
   Responsive
   =========================== */
@media (min-width: 540px) {
    .db-page[b-q39cwp9elc] {
        max-width: 540px;
        padding: 24px 20px 48px;
    }
}
/* /Components/Pages/GiftCards/GiftCards.razor.rz.scp.css */
/* ===========================
   Gift Cards — Light theme, mobile-first
   =========================== */

.cw-page[b-8371qfjtru] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-8371qfjtru] { display: flex; justify-content: center; padding: 8px 0; }
.cw-header-logged[b-8371qfjtru] { justify-content: space-between; align-items: center; }
.cw-logo[b-8371qfjtru] { max-width: 160px; }

.cw-back-link[b-8371qfjtru] {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid #e5e7eb; background: #ffffff; color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 18px; transition: all 0.15s ease;
}
.cw-back-link:hover[b-8371qfjtru] { background: #f3f4f6; color: #1a1a2e; }

.cw-hero[b-8371qfjtru] { padding: 4px 0 0; }
.cw-title-lg[b-8371qfjtru] { margin: 0; font-size: 26px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.02em; }
.cw-subtitle[b-8371qfjtru] { margin: 4px 0 0; font-size: 14px; color: #6b7280; font-weight: 500; }

.cw-loading[b-8371qfjtru] { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; gap: 16px; }
.cw-spinner[b-8371qfjtru] { width: 36px; height: 36px; border: 3px solid #e5e7eb; border-top-color: #95c11f; border-radius: 50%; animation: spin-b-8371qfjtru 0.7s linear infinite; }
@keyframes spin-b-8371qfjtru { to { transform: rotate(360deg); } }

.cw-empty[b-8371qfjtru] { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; gap: 8px; }
.cw-empty-icon[b-8371qfjtru] { font-size: 48px; color: #d1d5db; }
.cw-empty h3[b-8371qfjtru] { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0; }
.cw-empty p[b-8371qfjtru] { font-size: 14px; color: #6b7280; margin: 0; }

.cw-btn-primary[b-8371qfjtru] {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 14px; font-weight: 700; font-size: 15px;
    text-decoration: none; color: #ffffff;
    background: linear-gradient(135deg, #95c11f 0%, #7aa31a 100%);
    box-shadow: 0 4px 14px rgba(149, 193, 31, 0.25);
    transition: all 0.2s ease; border: none; cursor: pointer;
}
.cw-btn-primary:hover[b-8371qfjtru] { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(149, 193, 31, 0.35); color: #ffffff; }

/* Coming Soon Card */
.cw-coming-soon[b-8371qfjtru] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    gap: 12px;
}

.cw-coming-icon[b-8371qfjtru] {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #95c11f;
}

.cw-coming-title[b-8371qfjtru] {
    margin: 0; font-size: 20px; font-weight: 800; color: #1a1a2e;
}

.cw-coming-message[b-8371qfjtru] {
    margin: 0; font-size: 14px; color: #6b7280; line-height: 1.5; max-width: 300px;
}

.cw-footer[b-8371qfjtru] { margin-top: auto; text-align: center; padding: 16px 0 0; }
.cw-footer small[b-8371qfjtru] { font-size: 12px; color: #9ca3af; }
/* /Components/Pages/Home.razor.rz.scp.css */
/* ===========================
   Company.WebAdmin — Home
   Light / Daily theme, mobile-first
   =========================== */

/* Page wrapper */
.cw-page[b-vfv4so79rk] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.cw-header[b-vfv4so79rk] {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.cw-header-logged[b-vfv4so79rk] {
    justify-content: space-between;
    align-items: center;
}

.cw-logo[b-vfv4so79rk] {
    max-width: 160px;
}

/* Instagram Bar */
.cw-ig-bar[b-vfv4so79rk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.cw-ig-left[b-vfv4so79rk] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.cw-ig-avatar[b-vfv4so79rk] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    object-fit: cover;
    flex-shrink: 0;
}

.cw-ig-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cw-ig-name[b-vfv4so79rk] {
    font-weight: 600;
    font-size: 0.82rem;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cw-ig-handle[b-vfv4so79rk] {
    font-size: 0.72rem;
    color: #6b7280;
}

.cw-ig-follow[b-vfv4so79rk] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cw-ig-follow:hover[b-vfv4so79rk] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(225, 48, 108, 0.3);
    color: #fff;
}

/* Logout Button */
.cw-logout-btn[b-vfv4so79rk] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    -webkit-tap-highlight-color: transparent;
}

.cw-logout-btn:hover[b-vfv4so79rk] {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.cw-logout-btn:active[b-vfv4so79rk] {
    transform: scale(0.93);
}

/* Hero */
.cw-hero[b-vfv4so79rk] {
    padding: 4px 0 8px;
}

.cw-title-lg[b-vfv4so79rk] {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.cw-title-accent[b-vfv4so79rk] {
    margin: 2px 0 0;
    font-size: 24px;
    font-weight: 800;
    color: #95c11f;
    letter-spacing: -0.02em;
}

.cw-subtitle[b-vfv4so79rk] {
    margin: 8px 0 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Section heads */
.cw-section-head[b-vfv4so79rk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.cw-h2[b-vfv4so79rk] {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
}

.cw-link[b-vfv4so79rk] {
    font-size: 13px;
    font-weight: 600;
    color: #95c11f;
    text-decoration: none;
}

.cw-link:hover[b-vfv4so79rk] {
    text-decoration: underline;
}

/* ===========================
   Quick Actions (4-column grid)
   =========================== */
.cw-actions[b-vfv4so79rk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.cw-action-btn[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    -webkit-tap-highlight-color: transparent;
}

.cw-action-btn:hover[b-vfv4so79rk] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.cw-action-btn:active[b-vfv4so79rk] {
    transform: scale(0.95);
}

.cw-action-icon[b-vfv4so79rk] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f7e0, #d9eaa3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cw-action-icon i[b-vfv4so79rk] {
    font-size: 20px;
    color: #95c11f;
}

.cw-action-btn span[b-vfv4so79rk] {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

/* ===========================
   Balance Summary (3-column)
   =========================== */
.cw-summary[b-vfv4so79rk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cw-summary-card[b-vfv4so79rk] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-summary-icon[b-vfv4so79rk] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cw-icon-green[b-vfv4so79rk] {
    background: #f0f7e0;
    color: #95c11f;
}

.cw-icon-blue[b-vfv4so79rk] {
    background: #e3f2fd;
    color: #1976d2;
}

.cw-icon-gold[b-vfv4so79rk] {
    background: #fff8e1;
    color: #f59e0b;
}

.cw-summary-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cw-summary-label[b-vfv4so79rk] {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cw-summary-value[b-vfv4so79rk] {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

/* ===========================
   Highlight Card
   =========================== */
.cw-highlight[b-vfv4so79rk] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-highlight-row[b-vfv4so79rk] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cw-highlight-icon[b-vfv4so79rk] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff8e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #f59e0b;
}

.cw-highlight-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cw-highlight-title[b-vfv4so79rk] {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.cw-highlight-desc[b-vfv4so79rk] {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* ===========================
   Transaction Items
   =========================== */
.cw-tx-item[b-vfv4so79rk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-tx-icon[b-vfv4so79rk] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cw-tx-credit[b-vfv4so79rk] {
    background: #f0f7e0;
    color: #95c11f;
}

.cw-tx-debit[b-vfv4so79rk] {
    background: #ffebee;
    color: #c62828;
}

.cw-tx-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.cw-tx-company[b-vfv4so79rk] {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cw-tx-date[b-vfv4so79rk] {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.cw-tx-amount[b-vfv4so79rk] {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.cw-tx-credit-text[b-vfv4so79rk] {
    color: #95c11f;
}

.cw-tx-debit-text[b-vfv4so79rk] {
    color: #c62828;
}

/* ===========================
   Feature Rows (Explore)
   =========================== */
.cw-features[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cw-feature-row[b-vfv4so79rk] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.cw-feature-row:hover[b-vfv4so79rk] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cw-feature-row:active[b-vfv4so79rk] {
    transform: scale(0.98);
}

.cw-feature-icon[b-vfv4so79rk] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.cw-feature-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cw-feature-title[b-vfv4so79rk] {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.cw-feature-desc[b-vfv4so79rk] {
    font-size: 12px;
    color: #9ca3af;
}

.cw-feature-arrow[b-vfv4so79rk] {
    font-size: 18px;
    color: #d1d5db;
    flex-shrink: 0;
}

/* ===========================
   Guest: Benefits
   =========================== */
.cw-benefits[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cw-benefit[b-vfv4so79rk] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-benefit-icon[b-vfv4so79rk] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f7e0, #d9eaa3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #95c11f;
}

.cw-benefit-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cw-benefit-title[b-vfv4so79rk] {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.cw-benefit-desc[b-vfv4so79rk] {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* ===========================
   CTA Buttons
   =========================== */
.cw-cta[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.cw-btn-primary[b-vfv4so79rk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.25);
    -webkit-tap-highlight-color: transparent;
}

.cw-btn-primary:hover[b-vfv4so79rk] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(149, 193, 31, 0.35);
    color: #ffffff;
}

.cw-btn-primary:active[b-vfv4so79rk] {
    transform: scale(0.98);
}

.cw-btn-outline[b-vfv4so79rk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #ffffff;
    color: #95c11f;
    border: 2px solid #95c11f;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.cw-btn-outline:hover[b-vfv4so79rk] {
    background: #f4f9e6;
    transform: translateY(-1px);
    color: #95c11f;
}

.cw-btn-outline:active[b-vfv4so79rk] {
    transform: scale(0.98);
}

.cw-btn-full[b-vfv4so79rk] {
    width: 100%;
    margin-top: 12px;
}

/* ===========================
   Loading
   =========================== */
.cw-loading[b-vfv4so79rk] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #f7f8fa;
}

.cw-loading p[b-vfv4so79rk] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.cw-spinner[b-vfv4so79rk] {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top-color: #95c11f;
    border-radius: 50%;
    animation: cwSpin-b-vfv4so79rk 0.8s linear infinite;
}

@keyframes cwSpin-b-vfv4so79rk {
    to { transform: rotate(360deg); }
}

/* ===========================
   Footer
   =========================== */
.cw-footer[b-vfv4so79rk] {
    text-align: center;
    padding: 16px 0 8px;
    color: #9ca3af;
}

/* ===========================
   Pre-Launch Promo Card
   =========================== */
.cw-promo[b-vfv4so79rk] {
    background: linear-gradient(135deg, #7aa31a 0%, #95c11f 100%);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(149, 193, 31, 0.2);
}

.cw-promo[b-vfv4so79rk]::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(255, 222, 20, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cw-promo-badge[b-vfv4so79rk] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(255, 222, 20, 0.15);
    color: #ffde14;
    font-size: 11px;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.cw-promo-headline[b-vfv4so79rk] {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cw-promo-offer[b-vfv4so79rk] {
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    font-weight: 500;
}

.cw-promo-highlight[b-vfv4so79rk] {
    color: #ffde14;
    font-weight: 800;
}

.cw-promo-divider[b-vfv4so79rk] {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    margin: 0 auto 12px;
}

.cw-promo-urgency[b-vfv4so79rk] {
    margin: 0 0 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.45;
    font-weight: 500;
}

.cw-promo-urgency i[b-vfv4so79rk] {
    color: #ffde14;
    margin-right: 3px;
}

.cw-promo-urgency-pt[b-vfv4so79rk] {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
    font-style: italic;
    font-weight: 500;
}

.cw-promo-urgency-pt i[b-vfv4so79rk] {
    color: #95c11f;
    margin-right: 3px;
    font-style: normal;
}

/* ===========================
   Consumer Advantages Section
   =========================== */
.cw-consumer-section[b-vfv4so79rk] {
    margin-top: 8px;
}

.cw-consumer-header[b-vfv4so79rk] {
    text-align: center;
    margin-bottom: 14px;
}

.cw-consumer-badge[b-vfv4so79rk] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(149, 193, 31, 0.1);
    color: #7aa31a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid rgba(149, 193, 31, 0.2);
    margin-bottom: 10px;
}

.cw-consumer-title[b-vfv4so79rk] {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 800;
    color: #95c11f;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cw-consumer-subtitle[b-vfv4so79rk] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

.cw-consumer-benefits[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cw-consumer-item[b-vfv4so79rk] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-consumer-item p[b-vfv4so79rk] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.cw-consumer-item-free[b-vfv4so79rk] {
    background: linear-gradient(135deg, rgba(149, 193, 31, 0.06) 0%, rgba(255, 222, 20, 0.06) 100%);
    border-color: rgba(149, 193, 31, 0.2);
}

.cw-consumer-icon[b-vfv4so79rk] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(149, 193, 31, 0.1);
    color: #7aa31a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ===========================
   Company Status Banner
   =========================== */

.cw-status-banner[b-vfv4so79rk] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid;
}

.cw-status-icon-wrap[b-vfv4so79rk] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cw-status-text[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cw-status-text strong[b-vfv4so79rk] {
    font-size: 14px;
    font-weight: 700;
}

.cw-status-text p[b-vfv4so79rk] {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

/* Pending */
.cw-status-pending[b-vfv4so79rk] {
    background: #fffbeb;
    border-color: #fde68a;
}

.cw-status-pending .cw-status-icon-wrap[b-vfv4so79rk] {
    background: #fef3c7;
    color: #d97706;
}

.cw-status-pending .cw-status-text strong[b-vfv4so79rk] {
    color: #92400e;
}

.cw-status-pending .cw-status-text p[b-vfv4so79rk] {
    color: #a16207;
}

/* Active */
.cw-status-active[b-vfv4so79rk] {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.cw-status-active .cw-status-icon-wrap[b-vfv4so79rk] {
    background: #dcfce7;
    color: #16a34a;
}

.cw-status-active .cw-status-text strong[b-vfv4so79rk] {
    color: #166534;
}

.cw-status-active .cw-status-text p[b-vfv4so79rk] {
    color: #15803d;
}

/* Suspended */
.cw-status-suspended[b-vfv4so79rk] {
    background: #fef2f2;
    border-color: #fecaca;
}

.cw-status-suspended .cw-status-icon-wrap[b-vfv4so79rk] {
    background: #fee2e2;
    color: #dc2626;
}

.cw-status-suspended .cw-status-text strong[b-vfv4so79rk] {
    color: #991b1b;
}

.cw-status-suspended .cw-status-text p[b-vfv4so79rk] {
    color: #b91c1c;
}

/* ===========================
   PWA Install Card
   =========================== */
.pwa-install-btn[b-vfv4so79rk] {
    display: none !important;
}

:global(.pwa-installable) .pwa-install-btn[b-vfv4so79rk] {
    display: flex !important;
}

.pwa-ios-btn[b-vfv4so79rk] {
    display: none !important;
}

:global(.pwa-ios) .pwa-ios-btn[b-vfv4so79rk] {
    display: flex !important;
}

:global(.pwa-standalone) .pwa-install-btn[b-vfv4so79rk],
:global(.pwa-standalone) .pwa-ios-btn[b-vfv4so79rk] {
    display: none !important;
}

.cw-install-card[b-vfv4so79rk] {
    background: linear-gradient(135deg, #f4f8e8, #fafcf5);
    border: 1px solid #d4e4a8;
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 14px;
}

.cw-install-ios[b-vfv4so79rk] {
    background: linear-gradient(135deg, #f5f5f5, #fafafa);
    border-color: #e5e7eb;
}

.cw-install-content[b-vfv4so79rk] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cw-install-icon[b-vfv4so79rk] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #5c8012;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cw-install-ios .cw-install-icon[b-vfv4so79rk] {
    background: #6b7280;
}

.cw-install-info[b-vfv4so79rk] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cw-install-info strong[b-vfv4so79rk] {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.cw-install-info span[b-vfv4so79rk] {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.cw-install-info span i[b-vfv4so79rk] {
    font-size: 13px;
    vertical-align: middle;
}

.cw-install-action[b-vfv4so79rk] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: #5c8012;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cw-install-action:hover[b-vfv4so79rk] {
    background: #4a6910;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92, 128, 18, 0.25);
}

.cw-install-action i[b-vfv4so79rk] {
    font-size: 14px;
}

/* ===========================
   Responsive — wider screens
   =========================== */
@media (min-width: 540px) {
    .cw-page[b-vfv4so79rk] {
        max-width: 540px;
        padding: 24px 20px 48px;
    }
}
/* /Components/Pages/Login/Login.razor.rz.scp.css */
/* Login Page Styles */
.login-page[b-62g9azz5yh] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #95c11f 0%, #ffde14 100%);
    padding: 1rem;
}

.login-container[b-62g9azz5yh] {
    width: 100%;
    max-width: 420px;
}

.login-card[b-62g9azz5yh] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    animation: slideUp-b-62g9azz5yh 0.4s ease-out;
}

@keyframes slideUp-b-62g9azz5yh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-62g9azz5yh] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo[b-62g9azz5yh] {
    max-width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.login-title[b-62g9azz5yh] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #95c11f;
}

.login-subtitle[b-62g9azz5yh] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.login-form[b-62g9azz5yh] {
    margin-top: 1.5rem;
}

.form-group[b-62g9azz5yh] {
    margin-bottom: 1.5rem;
}

.form-label[b-62g9azz5yh] {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control[b-62g9azz5yh] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus[b-62g9azz5yh] {
    outline: none;
    border-color: #95c11f;
    box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.1);
}

.form-control-lg[b-62g9azz5yh] {
    padding: 1rem 1.25rem;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

.btn[b-62g9azz5yh] {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary[b-62g9azz5yh] {
    background: #95c11f;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-62g9azz5yh] {
    background: #7aa31a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.3);
}

.btn-primary:active:not(:disabled)[b-62g9azz5yh] {
    transform: translateY(0);
}

.btn-primary:disabled[b-62g9azz5yh] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-block[b-62g9azz5yh] {
    width: 100%;
}

.btn-link[b-62g9azz5yh] {
    background: transparent;
    color: #95c11f;
    padding: 0.5rem;
}

.btn-link:hover[b-62g9azz5yh] {
    text-decoration: underline;
}

.login-footer[b-62g9azz5yh] {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p[b-62g9azz5yh] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.login-footer a[b-62g9azz5yh] {
    color: #95c11f;
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover[b-62g9azz5yh] {
    text-decoration: underline;
}

.alert[b-62g9azz5yh] {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-danger[b-62g9azz5yh] {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success[b-62g9azz5yh] {
    background: #efe;
    color: #2a6f2a;
    border-left: 4px solid #2a6f2a;
}

.text-danger[b-62g9azz5yh] {
    color: #c33;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.text-muted[b-62g9azz5yh] {
    color: #6c757d;
}

.text-center[b-62g9azz5yh] {
    text-align: center;
}

.small[b-62g9azz5yh] {
    font-size: 0.875rem;
}

.spinner-border[b-62g9azz5yh] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-62g9azz5yh 0.75s linear infinite;
}

.spinner-border-sm[b-62g9azz5yh] {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 2px;
}

.me-2[b-62g9azz5yh] {
    margin-right: 0.5rem;
}

@keyframes spin-b-62g9azz5yh {
    to { transform: rotate(360deg); }
}

.verification-form[b-62g9azz5yh] {
    animation: fadeIn-b-62g9azz5yh 0.3s ease-out;
}

.remember-me-group[b-62g9azz5yh] {
    margin-bottom: 1.25rem;
}

.remember-me-label[b-62g9azz5yh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    user-select: none;
}

.remember-me-label input[type="checkbox"][b-62g9azz5yh] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #95c11f;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

@keyframes fadeIn-b-62g9azz5yh {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
    .login-card[b-62g9azz5yh] {
        padding: 2rem 1.5rem;
    }

    .login-title[b-62g9azz5yh] {
        font-size: 1.5rem;
    }

    .form-control-lg[b-62g9azz5yh] {
        font-size: 1.25rem;
        letter-spacing: 0.25rem;
    }
}
/* /Components/Pages/Login/SignUp.razor.rz.scp.css */
/* SignUp Page Styles - Inherits most from Login but with customizations */
.login-page[b-t6yqu8yepg] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #95c11f 0%, #ffde14 100%);
    padding: 1rem;
}

.login-container[b-t6yqu8yepg] {
    width: 100%;
    max-width: 480px;
}

.login-card[b-t6yqu8yepg] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    animation: slideUp-b-t6yqu8yepg 0.4s ease-out;
}

@keyframes slideUp-b-t6yqu8yepg {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-t6yqu8yepg] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo[b-t6yqu8yepg] {
    max-width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.login-title[b-t6yqu8yepg] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #95c11f;
}

.login-subtitle[b-t6yqu8yepg] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.login-form[b-t6yqu8yepg] {
    margin-top: 1.5rem;
}

.form-group[b-t6yqu8yepg] {
    margin-bottom: 1.25rem;
}

.form-label[b-t6yqu8yepg] {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control[b-t6yqu8yepg] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus[b-t6yqu8yepg] {
    outline: none;
    border-color: #95c11f;
    box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.1);
}

.form-control-lg[b-t6yqu8yepg] {
    padding: 1rem 1.25rem;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

.btn[b-t6yqu8yepg] {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary[b-t6yqu8yepg] {
    background: #95c11f;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-t6yqu8yepg] {
    background: #7aa31a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.3);
}

.btn-primary:active:not(:disabled)[b-t6yqu8yepg] {
    transform: translateY(0);
}

.btn-primary:disabled[b-t6yqu8yepg] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-block[b-t6yqu8yepg] {
    width: 100%;
}

.btn-link[b-t6yqu8yepg] {
    background: transparent;
    color: #95c11f;
    padding: 0.5rem;
}

.btn-link:hover[b-t6yqu8yepg] {
    text-decoration: underline;
}

.login-footer[b-t6yqu8yepg] {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p[b-t6yqu8yepg] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.login-footer a[b-t6yqu8yepg] {
    color: #95c11f;
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover[b-t6yqu8yepg] {
    text-decoration: underline;
}

.alert[b-t6yqu8yepg] {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-danger[b-t6yqu8yepg] {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success[b-t6yqu8yepg] {
    background: #efe;
    color: #2a6f2a;
    border-left: 4px solid #2a6f2a;
}

.text-danger[b-t6yqu8yepg] {
    color: #c33;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.text-muted[b-t6yqu8yepg] {
    color: #6c757d;
}

.text-center[b-t6yqu8yepg] {
    text-align: center;
}

.small[b-t6yqu8yepg] {
    font-size: 0.875rem;
}

.spinner-border[b-t6yqu8yepg] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-t6yqu8yepg 0.75s linear infinite;
}

.spinner-border-sm[b-t6yqu8yepg] {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 2px;
}

.me-2[b-t6yqu8yepg] {
    margin-right: 0.5rem;
}

@keyframes spin-b-t6yqu8yepg {
    to { transform: rotate(360deg); }
}

.verification-form[b-t6yqu8yepg] {
    animation: fadeIn-b-t6yqu8yepg 0.3s ease-out;
}

@keyframes fadeIn-b-t6yqu8yepg {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SignUp specific styles */
.form-group + .form-group[b-t6yqu8yepg] {
    margin-top: 1.25rem;
}

/* Postal Code formatting hint */
input[maxlength="7"][b-t6yqu8yepg] {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 480px) {
    .login-container[b-t6yqu8yepg] {
        max-width: 100%;
    }

    .login-card[b-t6yqu8yepg] {
        padding: 2rem 1.5rem;
    }

    .login-title[b-t6yqu8yepg] {
        font-size: 1.5rem;
    }

    .form-control-lg[b-t6yqu8yepg] {
        font-size: 1.25rem;
        letter-spacing: 0.25rem;
    }

    .form-group[b-t6yqu8yepg] {
        margin-bottom: 1rem;
    }
}
/* /Components/Pages/Notifications/Notifications.razor.rz.scp.css */
/* ===========================
   Notifications — Light theme, blue palette, mobile-first
   =========================== */

.cw-page[b-57y9ywgsfp] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-57y9ywgsfp] {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.cw-header-logged[b-57y9ywgsfp] {
    justify-content: space-between;
    align-items: center;
}

.cw-logo[b-57y9ywgsfp] {
    max-width: 160px;
}

.cw-back-link[b-57y9ywgsfp] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.15s ease;
}

.cw-back-link:hover[b-57y9ywgsfp] {
    background: #f3f4f6;
    color: #1a1a2e;
}

.cw-hero[b-57y9ywgsfp] { padding: 4px 0 0; }
.cw-title-lg[b-57y9ywgsfp] { margin: 0; font-size: 26px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.02em; }
.cw-subtitle[b-57y9ywgsfp] { margin: 4px 0 0; font-size: 14px; color: #6b7280; font-weight: 500; }

/* ===========================
   Tabs
   =========================== */
.cw-tabs[b-57y9ywgsfp] { display: flex; gap: 8px; }

.cw-tab[b-57y9ywgsfp] {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 12px 10px;
    border: 1px solid #e5e7eb; background: #ffffff; border-radius: 14px;
    font-size: 13px; font-weight: 600; color: #6b7280;
    cursor: pointer; transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.cw-tab:hover[b-57y9ywgsfp] { background: #f9fafb; }
.cw-tab.active[b-57y9ywgsfp] {
    background: #95c11f; color: #ffffff; border-color: #95c11f;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.2);
}
.cw-tab i[b-57y9ywgsfp] { font-size: 16px; }

.cw-tab-badge[b-57y9ywgsfp] {
    background: rgba(0,0,0,0.08); color: inherit;
    padding: 1px 7px; border-radius: 8px;
    font-size: 11px; font-weight: 700;
}
.cw-tab.active .cw-tab-badge[b-57y9ywgsfp] {
    background: rgba(255,255,255,0.25);
}

/* ===========================
   Action Bar
   =========================== */
.cw-action-bar[b-57y9ywgsfp] {
    display: flex; justify-content: flex-end;
}

.cw-btn-text[b-57y9ywgsfp] {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: none; padding: 6px 12px;
    font-size: 13px; font-weight: 600; color: #95c11f;
    cursor: pointer; border-radius: 8px;
    transition: background 0.15s ease;
}
.cw-btn-text:hover[b-57y9ywgsfp] { background: #f0f7e0; }

/* ===========================
   Notification List
   =========================== */
.cw-notif-list[b-57y9ywgsfp] {
    display: flex; flex-direction: column; gap: 8px;
}

.cw-notif-item[b-57y9ywgsfp] {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px;
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.15s ease;
    cursor: default;
}

.cw-notif-unread[b-57y9ywgsfp] {
    cursor: pointer;
    border-left: 3px solid #95c11f;
}
.cw-notif-unread:hover[b-57y9ywgsfp] {
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    transform: translateY(-1px);
}
.cw-notif-unread:active[b-57y9ywgsfp] { transform: scale(0.99); }

.cw-notif-read[b-57y9ywgsfp] {
    opacity: 0.7;
}
.cw-notif-read:hover[b-57y9ywgsfp] { opacity: 0.85; }

/* Blue dot indicator */
.cw-notif-dot[b-57y9ywgsfp] {
    position: absolute;
    top: 18px; left: -2px;
    width: 8px; height: 8px; border-radius: 50%;
    background: #95c11f;
}

/* ===========================
   Notification Icon
   =========================== */
.cw-notif-icon[b-57y9ywgsfp] {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}

.cw-notif-icon-promo[b-57y9ywgsfp]  { background: #fef3c7; color: #f59e0b; }
.cw-notif-icon-reward[b-57y9ywgsfp] { background: #f0f7e0; color: #95c11f; }
.cw-notif-icon-gift[b-57y9ywgsfp]   { background: #ede9fe; color: #7c3aed; }
.cw-notif-icon-system[b-57y9ywgsfp] { background: #f3f4f6; color: #6b7280; }
.cw-notif-icon-info[b-57y9ywgsfp]   { background: #f0f7e0; color: #95c11f; }

/* ===========================
   Notification Body
   =========================== */
.cw-notif-body[b-57y9ywgsfp] {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 3px;
}

.cw-notif-header[b-57y9ywgsfp] {
    display: flex; justify-content: space-between; align-items: center;
}

.cw-notif-sender[b-57y9ywgsfp] {
    font-size: 11px; font-weight: 700; color: #95c11f;
    text-transform: uppercase; letter-spacing: 0.03em;
}

.cw-notif-time[b-57y9ywgsfp] {
    font-size: 11px; color: #9ca3af; font-weight: 500;
    white-space: nowrap;
}

.cw-notif-title[b-57y9ywgsfp] {
    margin: 0; font-size: 14px; font-weight: 700; color: #1a1a2e;
    line-height: 1.3;
}

.cw-notif-message[b-57y9ywgsfp] {
    margin: 0; font-size: 13px; color: #6b7280;
    line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}

.cw-notif-action[b-57y9ywgsfp] {
    display: inline-flex; align-items: center; gap: 2px;
    font-size: 12px; font-weight: 700; color: #95c11f;
    text-decoration: none; margin-top: 4px;
    transition: color 0.15s ease;
}
.cw-notif-action:hover[b-57y9ywgsfp] { text-decoration: underline; }
.cw-notif-action i[b-57y9ywgsfp] { font-size: 16px; }

/* Delete button (archive tab) */
.cw-notif-delete[b-57y9ywgsfp] {
    width: 32px; height: 32px; border-radius: 8px;
    background: transparent; border: none;
    display: flex; align-items: center; justify-content: center;
    color: #d1d5db; font-size: 14px; cursor: pointer;
    transition: all 0.15s ease; flex-shrink: 0;
    align-self: center;
}
.cw-notif-delete:hover[b-57y9ywgsfp] { background: #fef2f2; color: #dc2626; }

/* ===========================
   Empty States
   =========================== */
.cw-empty-state[b-57y9ywgsfp] {
    text-align: center; padding: 48px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.cw-empty-icon-wrap[b-57y9ywgsfp] {
    width: 64px; height: 64px; border-radius: 50%;
    background: #f3f4f6; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #d1d5db;
}

.cw-empty-state h3[b-57y9ywgsfp] {
    margin: 0; font-size: 17px; font-weight: 700; color: #374151;
}

.cw-empty-state p[b-57y9ywgsfp] {
    margin: 0; font-size: 13px; color: #9ca3af; line-height: 1.5;
}

/* ===========================
   General Empty / Loading / Footer
   =========================== */
.cw-empty[b-57y9ywgsfp] {
    text-align: center; padding: 40px 20px;
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cw-empty-icon[b-57y9ywgsfp] { font-size: 40px; color: #d1d5db; display: block; margin-bottom: 12px; }
.cw-empty h3[b-57y9ywgsfp] { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: #374151; }
.cw-empty p[b-57y9ywgsfp] { margin: 0; font-size: 13px; color: #9ca3af; }

.cw-btn-primary[b-57y9ywgsfp] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #95c11f, #7aa31a); color: #ffffff;
    border: none; border-radius: 12px; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.25);
}
.cw-btn-primary:hover[b-57y9ywgsfp] { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(149, 193, 31, 0.35); color: #ffffff; }

.cw-loading[b-57y9ywgsfp] {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; background: #f7f8fa;
}
.cw-loading p[b-57y9ywgsfp] { font-size: 14px; color: #6b7280; margin: 0; }

.cw-spinner[b-57y9ywgsfp] {
    width: 40px; height: 40px;
    border: 4px solid #e5e7eb; border-top-color: #95c11f;
    border-radius: 50%; animation: cwSpin-b-57y9ywgsfp 0.8s linear infinite;
}

.cw-footer[b-57y9ywgsfp] { text-align: center; padding: 16px 0 8px; color: #9ca3af; }

@keyframes cwSpin-b-57y9ywgsfp { to { transform: rotate(360deg); } }

@media (min-width: 540px) {
    .cw-page[b-57y9ywgsfp] { max-width: 540px; padding: 24px 20px 48px; }
}
/* /Components/Pages/Profile/EditCompany.razor.rz.scp.css */
/* ===========================
   Edit Customer / Profile
   Light theme, mobile-first
   =========================== */

.cw-page[b-r2aemgmgvi] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cw-header[b-r2aemgmgvi] {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.cw-header-logged[b-r2aemgmgvi] {
    justify-content: space-between;
    align-items: center;
}

.cw-logo[b-r2aemgmgvi] {
    max-width: 160px;
}

.cw-back-link[b-r2aemgmgvi] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.15s ease;
}

.cw-back-link:hover[b-r2aemgmgvi] {
    background: #f3f4f6;
    color: #1a1a2e;
}

.cw-hero[b-r2aemgmgvi] { padding: 4px 0 0; }
.cw-title-lg[b-r2aemgmgvi] { margin: 0; font-size: 26px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.02em; }
.cw-subtitle[b-r2aemgmgvi] { margin: 4px 0 0; font-size: 14px; color: #6b7280; font-weight: 500; }

/* ===========================
   Tabs
   =========================== */
.cw-tabs[b-r2aemgmgvi] {
    display: flex;
    gap: 6px;
}

.cw-tab[b-r2aemgmgvi] {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 10px 0;
    border: 1px solid #e5e7eb; background: #ffffff; border-radius: 12px;
    font-size: 12px; font-weight: 600; color: #6b7280;
    cursor: pointer; transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.cw-tab:hover[b-r2aemgmgvi] { background: #f9fafb; }
.cw-tab.active[b-r2aemgmgvi] {
    background: #95c11f; color: #ffffff; border-color: #95c11f;
    box-shadow: 0 4px 12px rgba(22,66,114,0.2);
}
.cw-tab i[b-r2aemgmgvi] { font-size: 18px; }
.cw-tab span[b-r2aemgmgvi] { display: none; }

/* ===========================
   Alerts
   =========================== */
.cw-alert[b-r2aemgmgvi] {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 12px; font-size: 13px; font-weight: 600;
    animation: cwSlideIn-b-r2aemgmgvi 0.25s ease-out;
}

@keyframes cwSlideIn-b-r2aemgmgvi {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cw-alert-success[b-r2aemgmgvi] { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.cw-alert-danger[b-r2aemgmgvi] { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ===========================
   Section head
   =========================== */
.cw-section-head[b-r2aemgmgvi] { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.cw-h2[b-r2aemgmgvi] { margin: 0; font-size: 17px; font-weight: 700; color: #1a1a2e; }

/* ===========================
   Form Card
   =========================== */
.cw-form-card[b-r2aemgmgvi] {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px;
    padding: 16px; display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-form-group[b-r2aemgmgvi] { display: flex; flex-direction: column; gap: 4px; }

.cw-form-label[b-r2aemgmgvi] {
    font-size: 12px; font-weight: 700; color: #374151;
    text-transform: uppercase; letter-spacing: 0.03em;
}

.cw-form-input[b-r2aemgmgvi],
[b-r2aemgmgvi] .cw-form-input {
    width: 100%; padding: 12px 14px;
    background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px;
    font-size: 15px; color: #1a1a2e; outline: none;
    transition: border-color 0.15s ease;
    font-family: inherit;
    box-sizing: border-box;
}
.cw-form-input:focus[b-r2aemgmgvi],
[b-r2aemgmgvi] .cw-form-input:focus { border-color: #95c11f; background: #ffffff; }
.cw-input-disabled[b-r2aemgmgvi],
[b-r2aemgmgvi] .cw-input-disabled { background: #f3f4f6; color: #9ca3af; cursor: not-allowed; }

[b-r2aemgmgvi] .cw-form-error { font-size: 11px; color: #dc2626; font-weight: 600; }

.cw-form-select[b-r2aemgmgvi] {
    padding: 10px 12px; background: #f9fafb; border: 1px solid #e5e7eb;
    border-radius: 10px; font-size: 14px; color: #1a1a2e; font-family: inherit;
    cursor: pointer;
}

.cw-form-hint[b-r2aemgmgvi] { font-size: 11px; color: #9ca3af; font-weight: 500; }
.cw-form-error[b-r2aemgmgvi] { font-size: 11px; color: #dc2626; font-weight: 600; }

/* ===========================
   Security Items
   =========================== */
.cw-security-item[b-r2aemgmgvi] {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.cw-security-item:last-child[b-r2aemgmgvi] { border-bottom: none; }

.cw-security-info[b-r2aemgmgvi] { flex: 1; min-width: 0; }
.cw-security-title[b-r2aemgmgvi] { margin: 0; font-size: 14px; font-weight: 600; color: #1a1a2e; }
.cw-security-desc[b-r2aemgmgvi] { margin: 2px 0 0; font-size: 12px; color: #9ca3af; }

.cw-badge-success[b-r2aemgmgvi] {
    background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0;
    padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 700;
    white-space: nowrap; display: flex; align-items: center; gap: 4px;
}

.cw-btn-outline-sm[b-r2aemgmgvi] {
    padding: 6px 14px; background: #ffffff; color: #95c11f;
    border: 1px solid #95c11f; border-radius: 8px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    transition: all 0.15s ease; white-space: nowrap;
}
.cw-btn-outline-sm:hover[b-r2aemgmgvi] { background: #f4f9e6; }

/* ===========================
   Preference Items
   =========================== */
.cw-pref-item[b-r2aemgmgvi] {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.cw-pref-item:last-child[b-r2aemgmgvi] { border-bottom: none; }

.cw-pref-info[b-r2aemgmgvi] { flex: 1; min-width: 0; }
.cw-pref-title[b-r2aemgmgvi] { margin: 0; font-size: 14px; font-weight: 600; color: #1a1a2e; }
.cw-pref-desc[b-r2aemgmgvi] { margin: 2px 0 0; font-size: 12px; color: #9ca3af; }

/* Toggle switch */
.cw-toggle[b-r2aemgmgvi] { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cw-toggle input[b-r2aemgmgvi] { opacity: 0; width: 0; height: 0; }
.cw-toggle-slider[b-r2aemgmgvi] {
    position: absolute; cursor: pointer; inset: 0;
    background: #d1d5db; border-radius: 24px;
    transition: 0.2s;
}
.cw-toggle-slider[b-r2aemgmgvi]::before {
    content: ""; position: absolute;
    height: 18px; width: 18px; left: 3px; bottom: 3px;
    background: white; border-radius: 50%;
    transition: 0.2s;
}
.cw-toggle input:checked + .cw-toggle-slider[b-r2aemgmgvi] { background: #95c11f; }
.cw-toggle input:checked + .cw-toggle-slider[b-r2aemgmgvi]::before { transform: translateX(20px); }

/* ===========================
   Danger Zone
   =========================== */
.cw-danger-card[b-r2aemgmgvi] {
    border-color: #fecaca;
}

.cw-btn-danger[b-r2aemgmgvi] {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px 16px;
    background: #dc2626; color: #ffffff;
    border: none; border-radius: 12px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: all 0.15s ease;
}
.cw-btn-danger:hover[b-r2aemgmgvi] { background: #b91c1c; }

.cw-btn-danger-outline[b-r2aemgmgvi] {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px 16px;
    background: #ffffff; color: #dc2626;
    border: 1px solid #fecaca; border-radius: 12px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: all 0.15s ease;
}
.cw-btn-danger-outline:hover[b-r2aemgmgvi] { background: #fef2f2; }

/* ===========================
   Shared Buttons
   =========================== */
.cw-btn-primary[b-r2aemgmgvi] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #95c11f, #7aa31a); color: #ffffff;
    border: none; border-radius: 14px; font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(22,66,114,0.25);
}
.cw-btn-primary:hover[b-r2aemgmgvi] { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(22,66,114,0.35); color: #ffffff; }
.cw-btn-full[b-r2aemgmgvi] { width: 100%; margin-top: 4px; }

.cw-btn-spinner[b-r2aemgmgvi] {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #ffffff;
    border-radius: 50%; animation: cwSpin-b-r2aemgmgvi 0.8s linear infinite;
}

/* ===========================
   Empty / Loading / Footer
   =========================== */
.cw-empty[b-r2aemgmgvi] {
    text-align: center; padding: 40px 20px;
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cw-empty-icon[b-r2aemgmgvi] { font-size: 40px; color: #d1d5db; display: block; margin-bottom: 12px; }
.cw-empty h3[b-r2aemgmgvi] { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: #374151; }
.cw-empty p[b-r2aemgmgvi] { margin: 0; font-size: 13px; color: #9ca3af; }

.cw-loading[b-r2aemgmgvi] {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; background: #f7f8fa;
}
.cw-loading p[b-r2aemgmgvi] { font-size: 14px; color: #6b7280; margin: 0; }

.cw-spinner[b-r2aemgmgvi] {
    width: 40px; height: 40px;
    border: 4px solid #e5e7eb; border-top-color: #95c11f;
    border-radius: 50%; animation: cwSpin-b-r2aemgmgvi 0.8s linear infinite;
}

@keyframes cwSpin-b-r2aemgmgvi { to { transform: rotate(360deg); } }

.cw-footer[b-r2aemgmgvi] { text-align: center; padding: 16px 0 8px; color: #9ca3af; }

/* ===========================
   Social Tab
   =========================== */

.cw-social-banner[b-r2aemgmgvi] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: linear-gradient(135deg, #eef6ff, #f0f9ff);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 16px;
}

.cw-social-banner-icon[b-r2aemgmgvi] {
    font-size: 24px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.cw-social-banner strong[b-r2aemgmgvi] {
    font-size: 14px;
    color: #1e40af;
    display: block;
    margin-bottom: 4px;
}

.cw-social-banner p[b-r2aemgmgvi] {
    margin: 0;
    font-size: 13px;
    color: #3b82f6;
    line-height: 1.45;
}

.cw-input-prefix-wrap[b-r2aemgmgvi] {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.cw-input-prefix-wrap:focus-within[b-r2aemgmgvi] {
    border-color: #95c11f;
    box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.12);
}

.cw-input-prefix[b-r2aemgmgvi] {
    padding: 0 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #9ca3af;
    user-select: none;
    flex-shrink: 0;
}

.cw-input-with-prefix[b-r2aemgmgvi] {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 4px !important;
    flex: 1;
}

.cw-input-with-prefix:focus[b-r2aemgmgvi] {
    outline: none;
    box-shadow: none !important;
}

/* ===========================
   Responsive
   =========================== */
@media (min-width: 540px) {
    .cw-page[b-r2aemgmgvi] { max-width: 540px; padding: 24px 20px 48px; }
}

/* ===========================
   Location Tab
   =========================== */
.cw-location-section-title[b-r2aemgmgvi] {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cw-location-section-title i[b-r2aemgmgvi] {
    color: #95c11f;
    font-size: 16px;
}

.cw-map-link[b-r2aemgmgvi] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    align-self: flex-start;
}

.cw-map-link:hover[b-r2aemgmgvi] {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}
/* /Components/Pages/Statement/Statement.razor.rz.scp.css */
/* ===========================
   Statement — Light theme, mobile-first
   =========================== */

.cw-page[b-r8kzgc6sfr] {
    min-height: 100vh;
    background: #f7f8fa;
    color: #1a1a2e;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Month Selector */
.stmt-month-selector[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px 14px;
}

.stmt-month-btn[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.stmt-month-btn:hover:not(:disabled)[b-r8kzgc6sfr] {
    background: #e5e7eb;
}

.stmt-month-btn:disabled[b-r8kzgc6sfr] {
    opacity: 0.3;
    cursor: not-allowed;
}

.stmt-month-label[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.stmt-period[b-r8kzgc6sfr] {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    margin-top: -8px;
}

/* Balance Card */
.stmt-balance-card[b-r8kzgc6sfr] {
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    color: #ffffff;
}

.stmt-balance-positive[b-r8kzgc6sfr] {
    background: linear-gradient(135deg, #059669, #10b981);
}

.stmt-balance-negative[b-r8kzgc6sfr] {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.stmt-balance-header[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
}

.stmt-balance-amount[b-r8kzgc6sfr] {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stmt-balance-label[b-r8kzgc6sfr] {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

.stmt-balance-label i[b-r8kzgc6sfr] {
    margin-right: 4px;
}

/* Breakdown */
.stmt-breakdown[b-r8kzgc6sfr] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.stmt-row[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.stmt-row:last-child[b-r8kzgc6sfr] {
    border-bottom: none;
}

.stmt-row-net[b-r8kzgc6sfr] {
    background: #1a1a2e;
    color: #f8fafc;
}

.stmt-row-icon[b-r8kzgc6sfr] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.stmt-icon-out[b-r8kzgc6sfr] {
    background: #fef2f2;
    color: #dc2626;
}

.stmt-icon-in[b-r8kzgc6sfr] {
    background: #f0fdf4;
    color: #059669;
}

.stmt-row-info[b-r8kzgc6sfr] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stmt-row-info strong[b-r8kzgc6sfr] {
    font-size: 13px;
    font-weight: 700;
}

.stmt-row-info small[b-r8kzgc6sfr] {
    font-size: 11px;
    color: #9ca3af;
}

.stmt-row-net .stmt-row-info small[b-r8kzgc6sfr] {
    color: #94a3b8;
}

.stmt-row-values[b-r8kzgc6sfr] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.stmt-points[b-r8kzgc6sfr] {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.stmt-row-net .stmt-points[b-r8kzgc6sfr] {
    color: #94a3b8;
}

.stmt-dollars[b-r8kzgc6sfr] {
    font-size: 14px;
    font-weight: 800;
}

.stmt-text-out[b-r8kzgc6sfr] {
    color: #dc2626;
}

.stmt-text-in[b-r8kzgc6sfr] {
    color: #059669;
}

.stmt-row-net .stmt-text-in[b-r8kzgc6sfr] {
    color: #95c11f;
}

.stmt-row-net .stmt-text-out[b-r8kzgc6sfr] {
    color: #f87171;
}

/* Stats */
.stmt-stats[b-r8kzgc6sfr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Revenue */
.stmt-revenue[b-r8kzgc6sfr] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.stmt-revenue-main[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 16px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #f8fafc;
}

.stmt-revenue-icon[b-r8kzgc6sfr] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(149, 193, 31, 0.2);
    color: #95c11f;
    flex-shrink: 0;
}

.stmt-revenue-info[b-r8kzgc6sfr] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stmt-revenue-label[b-r8kzgc6sfr] {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
}

.stmt-revenue-value[b-r8kzgc6sfr] {
    font-size: 26px;
    font-weight: 800;
    color: #95c11f;
}

.stmt-revenue-row[b-r8kzgc6sfr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 13px;
    color: #6b7280;
    border-top: 1px solid #f3f4f6;
}

.stmt-revenue-row span[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stmt-revenue-row strong[b-r8kzgc6sfr] {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
}

.stmt-stat-card[b-r8kzgc6sfr] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
}

.stmt-stat-icon[b-r8kzgc6sfr] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.stmt-icon-earn[b-r8kzgc6sfr] {
    background: #f0fdf4;
    color: #059669;
}

.stmt-icon-redeem[b-r8kzgc6sfr] {
    background: #eff6ff;
    color: #2563eb;
}

.stmt-stat-info[b-r8kzgc6sfr] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stmt-stat-label[b-r8kzgc6sfr] {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.stmt-stat-value[b-r8kzgc6sfr] {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
}

/* Shared */
.cw-loading[b-r8kzgc6sfr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 12px;
    color: #9ca3af;
}

.cw-spinner[b-r8kzgc6sfr] {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #95c11f;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@@keyframes spin {
    to[b-r8kzgc6sfr] { transform: rotate(360deg); }
}

.cw-header[b-r8kzgc6sfr] {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.cw-header-logged[b-r8kzgc6sfr] {
    justify-content: space-between;
    align-items: center;
}

.cw-logo[b-r8kzgc6sfr] {
    max-width: 160px;
}

.cw-back-link[b-r8kzgc6sfr] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.15s ease;
}

.cw-back-link:hover[b-r8kzgc6sfr] {
    background: #f3f4f6;
    color: #1a1a2e;
}

.cw-hero[b-r8kzgc6sfr] {
    text-align: center;
}

.cw-title-lg[b-r8kzgc6sfr] {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.cw-subtitle[b-r8kzgc6sfr] {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
}

.cw-section-head[b-r8kzgc6sfr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cw-h2[b-r8kzgc6sfr] {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.cw-footer[b-r8kzgc6sfr] {
    text-align: center;
    color: #d1d5db;
    font-size: 11px;
    margin-top: 16px;
}

.cw-empty[b-r8kzgc6sfr] {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.cw-empty-icon[b-r8kzgc6sfr] {
    font-size: 48px;
    margin-bottom: 12px;
}

.cw-btn-primary[b-r8kzgc6sfr] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 12px;
    background: #95c11f;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border: none;
}
/* /Components/Pages/Transaction/Earn.razor.rz.scp.css */
/* ===========================
   Coming Soon — Earn Points
   =========================== */

.cs-hero[b-u1w20cj0tq] {
    text-align: center;
    padding: 40px 20px 32px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(149, 193, 31, 0.25);
}

.cs-hero-icon[b-u1w20cj0tq] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #ffde14;
}

.cs-hero-title[b-u1w20cj0tq] {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cs-hero-subtitle[b-u1w20cj0tq] {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.cs-hero-desc[b-u1w20cj0tq] {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 500;
    max-width: 320px;
}

.cs-hero-badge[b-u1w20cj0tq] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cs-info-card[b-u1w20cj0tq] {
    display: flex;
    gap: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cs-info-icon[b-u1w20cj0tq] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f7e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #95c11f;
}

.cs-info-body h3[b-u1w20cj0tq] {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.cs-info-body p[b-u1w20cj0tq] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.cs-back-btn[b-u1w20cj0tq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.cs-back-btn:hover[b-u1w20cj0tq] {
    background: #f3f4f6;
    color: #1a1a2e;
}
/* /Components/Pages/Transaction/PendingTransactions.razor.rz.scp.css */
/* ===========================
   Company.WebAdmin — Pending Transactions
   =========================== */

/* Refresh Button */
.cw-hero[b-ar6tjk0oh0] {
    position: relative;
}

.cw-refresh-btn[b-ar6tjk0oh0] {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cw-refresh-btn:hover:not(:disabled)[b-ar6tjk0oh0] {
    background: #f3f4f6;
    color: #95c11f;
}

.cw-refresh-btn:disabled[b-ar6tjk0oh0] {
    opacity: 0.5;
    cursor: not-allowed;
}

.cw-spin[b-ar6tjk0oh0] {
    animation: spin 0.8s linear infinite;
}

@@keyframes spin {
    to[b-ar6tjk0oh0] { transform: rotate(360deg); }
}

/* Tabs */
.cw-tabs[b-ar6tjk0oh0] {
    display: flex;
    gap: 6px;
}

.cw-tab[b-ar6tjk0oh0] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 11px 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.cw-tab:hover[b-ar6tjk0oh0] {
    background: #f9fafb;
}

.cw-tab.active[b-ar6tjk0oh0] {
    background: #95c11f;
    color: #ffffff;
    border-color: #95c11f;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.25);
}

.cw-tab i[b-ar6tjk0oh0] {
    font-size: 15px;
}

.cw-tab-badge[b-ar6tjk0oh0] {
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 16px;
}

.cw-tab.active .cw-tab-badge[b-ar6tjk0oh0] {
    background: #ffffff;
    color: #95c11f;
}

/* Request List */
.cw-request-list[b-ar6tjk0oh0] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cw-request-card[b-ar6tjk0oh0] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cw-request-header[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cw-request-avatar[b-ar6tjk0oh0] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cw-request-info[b-ar6tjk0oh0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cw-request-info strong[b-ar6tjk0oh0] {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cw-request-info small[b-ar6tjk0oh0] {
    font-size: 12px;
    color: #9ca3af;
}

.cw-request-badge[b-ar6tjk0oh0] {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.cw-badge-pending[b-ar6tjk0oh0] {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

/* Request Details */
.cw-request-details[b-ar6tjk0oh0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

.cw-request-stat[b-ar6tjk0oh0] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cw-request-label[b-ar6tjk0oh0] {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cw-request-value[b-ar6tjk0oh0] {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Request Actions */
.cw-request-actions[b-ar6tjk0oh0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cw-req-btn[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
}

.cw-req-btn:disabled[b-ar6tjk0oh0] {
    opacity: 0.5;
    cursor: not-allowed;
}

.cw-req-approve[b-ar6tjk0oh0] {
    background: #059669;
    color: #ffffff;
}

.cw-req-approve:hover:not(:disabled)[b-ar6tjk0oh0] {
    background: #047857;
}

.cw-req-reject[b-ar6tjk0oh0] {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.cw-req-reject:hover:not(:disabled)[b-ar6tjk0oh0] {
    background: #fef2f2;
}

/* Redeem Groups */
.cw-redeem-group[b-ar6tjk0oh0] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.cw-redeem-group-header[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.cw-redeem-group-header .cw-request-avatar[b-ar6tjk0oh0] {
    width: 36px;
    height: 36px;
}

.cw-request-card-type[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
}

.cw-card-type-badge[b-ar6tjk0oh0] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cw-badge-store[b-ar6tjk0oh0] {
    background: #f0fdf4;
    color: #059669;
    border: 1px solid #bbf7d0;
}

.cw-badge-community[b-ar6tjk0oh0] {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.cw-request-community[b-ar6tjk0oh0] {
    border-left: 3px solid #2563eb;
}

.cw-redeem-group-footer[b-ar6tjk0oh0] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.cw-redeem-group-total[b-ar6tjk0oh0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #1a1a2e;
    border-radius: 10px;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 600;
}

.cw-redeem-group-total strong[b-ar6tjk0oh0] {
    font-size: 18px;
    font-weight: 800;
    color: #95c11f;
}

.cw-req-approve-all[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    background: #059669;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
}

.cw-req-approve-all:hover:not(:disabled)[b-ar6tjk0oh0] {
    background: #047857;
}

.cw-req-approve-all:disabled[b-ar6tjk0oh0] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Earn Points Input */
.cw-earn-input-row[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.cw-earn-input[b-ar6tjk0oh0] {
    max-width: 120px;
    padding: 8px 10px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: right;
    -moz-appearance: textfield;
}

.cw-earn-input[b-ar6tjk0oh0]::-webkit-outer-spin-button,
.cw-earn-input[b-ar6tjk0oh0]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cw-earn-prefix[b-ar6tjk0oh0] {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
}

.cw-earn-suffix[b-ar6tjk0oh0] {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.cw-calc-btn[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cw-calc-btn:hover[b-ar6tjk0oh0] {
    background: #f3f4f6;
    border-color: #95c11f;
    color: #95c11f;
}

.cw-earn-details[b-ar6tjk0oh0] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

/* Points Breakdown */
.cw-earn-breakdown[b-ar6tjk0oh0] {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 2px 0;
}

.cw-earn-breakdown-header[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #059669;
}

.cw-earn-breakdown-community[b-ar6tjk0oh0] {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.cw-community-header[b-ar6tjk0oh0] {
    color: #2563eb;
}

.cw-earn-breakdown-row[b-ar6tjk0oh0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
    color: #6b7280;
}

.cw-earn-breakdown-total[b-ar6tjk0oh0] {
    border-top: 1px solid #bbf7d0;
    margin-top: 2px;
    padding-top: 10px;
    color: #1a1a2e;
    font-weight: 600;
}

.cw-earn-breakdown-community .cw-earn-breakdown-total[b-ar6tjk0oh0] {
    border-top-color: #bfdbfe;
}

.cw-earn-breakdown-total strong[b-ar6tjk0oh0] {
    font-size: 18px;
    color: #059669;
}

.cw-earn-breakdown-community .cw-earn-breakdown-total strong[b-ar6tjk0oh0] {
    color: #2563eb;
}

/* Grand Total */
.cw-earn-grand-total[b-ar6tjk0oh0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #1a1a2e;
    border-radius: 10px;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 600;
}

.cw-earn-grand-total strong[b-ar6tjk0oh0] {
    font-size: 20px;
    font-weight: 800;
    color: #95c11f;
}

/* No community card info */
.cw-earn-no-community[b-ar6tjk0oh0] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 12px;
    color: #92400e;
    font-weight: 500;
}

.cw-earn-points-preview[b-ar6tjk0oh0] {
    color: #059669 !important;
    font-size: 20px !important;
}

.cw-earn-hint[b-ar6tjk0oh0] {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 2px;
}

/* ===========================
   Coupon Redeem Cards
   =========================== */
.cw-coupon-card-body[b-ar6tjk0oh0] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

.cw-coupon-img[b-ar6tjk0oh0] {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.cw-coupon-info[b-ar6tjk0oh0] {
    flex: 1;
    min-width: 0;
}

.cw-coupon-title[b-ar6tjk0oh0] {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.cw-coupon-desc[b-ar6tjk0oh0] {
    margin: 0 0 8px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cw-coupon-meta[b-ar6tjk0oh0] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cw-coupon-meta span[b-ar6tjk0oh0] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
}

.cw-coupon-meta i[b-ar6tjk0oh0] {
    font-size: 12px;
}
/* /Components/Pages/Transaction/PrePaid.razor.rz.scp.css */
/* ===========================
   Coming Soon — Prepaid Cards
   =========================== */

.cs-hero[b-7b2ffttss2] {
    text-align: center;
    padding: 40px 20px 32px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(149, 193, 31, 0.25);
}

.cs-hero-icon[b-7b2ffttss2] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #ffde14;
}

.cs-hero-title[b-7b2ffttss2] {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cs-hero-subtitle[b-7b2ffttss2] {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.cs-hero-desc[b-7b2ffttss2] {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 500;
    max-width: 320px;
}

.cs-hero-badge[b-7b2ffttss2] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cs-info-card[b-7b2ffttss2] {
    display: flex;
    gap: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cs-info-icon[b-7b2ffttss2] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f7e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #95c11f;
}

.cs-info-body h3[b-7b2ffttss2] {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.cs-info-body p[b-7b2ffttss2] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.cs-back-btn[b-7b2ffttss2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.cs-back-btn:hover[b-7b2ffttss2] {
    background: #f3f4f6;
    color: #1a1a2e;
}
/* /Components/Pages/Transaction/Redeem.razor.rz.scp.css */
/* ===========================
   Coming Soon — Redeem Points
   =========================== */

.cs-hero[b-zo3i66qbng] {
    text-align: center;
    padding: 40px 20px 32px;
    background: linear-gradient(135deg, #95c11f, #7aa31a);
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(149, 193, 31, 0.25);
}

.cs-hero-icon[b-zo3i66qbng] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #ffde14;
}

.cs-hero-title[b-zo3i66qbng] {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cs-hero-subtitle[b-zo3i66qbng] {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.cs-hero-desc[b-zo3i66qbng] {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 500;
    max-width: 320px;
}

.cs-hero-badge[b-zo3i66qbng] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cs-info-card[b-zo3i66qbng] {
    display: flex;
    gap: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cs-info-icon[b-zo3i66qbng] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f7e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #95c11f;
}

.cs-info-body h3[b-zo3i66qbng] {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.cs-info-body p[b-zo3i66qbng] {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.cs-back-btn[b-zo3i66qbng] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.cs-back-btn:hover[b-zo3i66qbng] {
    background: #f3f4f6;
    color: #1a1a2e;
}
/* /Components/Pages/Transaction/TransactionMenu.razor.rz.scp.css */
/* ===========================
   Company.WebAdmin — Transaction Menu
   =========================== */

.cw-menu-grid[b-vq0kj6g9jf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cw-menu-card[b-vq0kj6g9jf] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    -webkit-tap-highlight-color: transparent;
}

.cw-menu-card:hover[b-vq0kj6g9jf] {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.cw-menu-icon[b-vq0kj6g9jf] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: #f3f4f6;
    color: #6b7280;
}

.cw-card-green .cw-menu-icon[b-vq0kj6g9jf] {
    background: #ecfdf5;
    color: #059669;
}

.cw-card-orange .cw-menu-icon[b-vq0kj6g9jf] {
    background: #fff7ed;
    color: #ea580c;
}

.cw-card-blue .cw-menu-icon[b-vq0kj6g9jf] {
    background: #eff6ff;
    color: #2563eb;
}

.cw-card-gold .cw-menu-icon[b-vq0kj6g9jf] {
    background: #fffbeb;
    color: #d97706;
}

.cw-menu-body[b-vq0kj6g9jf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cw-menu-body strong[b-vq0kj6g9jf] {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.cw-menu-body small[b-vq0kj6g9jf] {
    font-size: 13px;
    color: #6b7280;
}

.cw-menu-arrow[b-vq0kj6g9jf] {
    color: #9ca3af;
    font-size: 16px;
    flex-shrink: 0;
}

.cw-back-link[b-vq0kj6g9jf] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.15s ease;
}

.cw-back-link:hover[b-vq0kj6g9jf] {
    background: #f3f4f6;
    color: #1a1a2e;
}
/* /Components/Pages/Transaction/Transactions.razor.rz.scp.css */
/* ===========================
   Company.WebAdmin — Transaction History
   =========================== */

.cw-tx-summary[b-z4etfsf22a] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cw-tx-summary-item[b-z4etfsf22a] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cw-tx-summary-label[b-z4etfsf22a] {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.cw-tx-summary-value[b-z4etfsf22a] {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.cw-tx-list[b-z4etfsf22a] {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.cw-tx-item[b-z4etfsf22a] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.1s ease;
}

.cw-tx-item:last-child[b-z4etfsf22a] {
    border-bottom: none;
}

.cw-tx-item:hover[b-z4etfsf22a] {
    background: #f9fafb;
}

.cw-tx-icon[b-z4etfsf22a] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cw-tx-credit[b-z4etfsf22a] {
    background: #ecfdf5;
    color: #059669;
}

.cw-tx-debit[b-z4etfsf22a] {
    background: #fef2f2;
    color: #dc2626;
}

.cw-tx-info[b-z4etfsf22a] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cw-tx-company[b-z4etfsf22a] {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cw-tx-date[b-z4etfsf22a] {
    font-size: 12px;
    color: #9ca3af;
}

.cw-tx-amounts[b-z4etfsf22a] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.cw-tx-amount[b-z4etfsf22a] {
    font-size: 14px;
    font-weight: 700;
}

.cw-tx-credit-text[b-z4etfsf22a] {
    color: #059669;
}

.cw-tx-debit-text[b-z4etfsf22a] {
    color: #dc2626;
}

.cw-tx-badge[b-z4etfsf22a] {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cw-badge-cr[b-z4etfsf22a] {
    background: #ecfdf5;
    color: #059669;
}

.cw-badge-db[b-z4etfsf22a] {
    background: #fef2f2;
    color: #dc2626;
}
/* /Components/Routes.razor.rz.scp.css */
/* 404 Not Found Page */
.not-found-page[b-q1tsofzjv0] {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.not-found-container[b-q1tsofzjv0] {
    text-align: center;
    max-width: 500px;
}

.not-found-container h1[b-q1tsofzjv0] {
    font-size: 8rem;
    font-weight: 700;
    color: #95c11f;
    line-height: 1;
}

.not-found-container h2[b-q1tsofzjv0] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0;
}

.not-found-container p[b-q1tsofzjv0] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.not-found-container .btn[b-q1tsofzjv0] {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #95c11f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.not-found-container .btn:hover[b-q1tsofzjv0] {
    background: #7aa31a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.3);
}

@media (max-width: 768px) {
    .not-found-container h1[b-q1tsofzjv0] {
        font-size: 5rem;
    }

    .not-found-container h2[b-q1tsofzjv0] {
        font-size: 1.5rem;
    }

    .not-found-container p[b-q1tsofzjv0] {
        font-size: 1rem;
    }
}
