/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-mygxs4p8bk] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mygxs4p8bk] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sidebar[b-mygxs4p8bk] {
    background: linear-gradient(180deg, #0f172a 0%, #1a1145 50%, #1e1b4b 100%);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3),
                1px 0 0 rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar[b-mygxs4p8bk]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 100%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: sidebarGlow-b-mygxs4p8bk 8s ease-in-out infinite alternate;
}

@keyframes sidebarGlow-b-mygxs4p8bk {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.top-row[b-mygxs4p8bk] {
    min-height: 4.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

    .top-row[b-mygxs4p8bk]  a, .top-row[b-mygxs4p8bk]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mygxs4p8bk]  a:hover, .top-row[b-mygxs4p8bk]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mygxs4p8bk]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mygxs4p8bk] {
        position: fixed;
        top: 0;
        right: 0;
        min-height: 4.5rem;
        z-index: 1001;
        background: transparent;
        border-bottom: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        justify-content: flex-end;
        padding-right: 4.5rem;
        pointer-events: none;
    }

    .top-row[b-mygxs4p8bk]  a, .top-row[b-mygxs4p8bk]  .btn-link {
        margin-left: 0;
        pointer-events: auto;
    }

    .theme-toggle[b-mygxs4p8bk] {
        pointer-events: auto;
        position: fixed;
        bottom: 16px;
        right: 16px;
        z-index: 1002;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 4px;
    }
}

@media (max-width: 640.98px) {
    :global(html[data-theme="dark"]) .theme-toggle[b-mygxs4p8bk] {
        background: rgba(30, 41, 59, 0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

@media (min-width: 641px) {
    .page[b-mygxs4p8bk] {
        flex-direction: row;
    }

    .sidebar[b-mygxs4p8bk] {
        width: 250px;
        min-width: 250px;
        flex-shrink: 0;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mygxs4p8bk] {
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .top-row.auth[b-mygxs4p8bk]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mygxs4p8bk], article[b-mygxs4p8bk] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mygxs4p8bk] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mygxs4p8bk] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Theme Toggle */
.theme-toggle[b-mygxs4p8bk] {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 3px;
}

.theme-btn[b-mygxs4p8bk] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    padding: 0;
}

.theme-btn:hover[b-mygxs4p8bk] {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.06);
}

.theme-btn.active[b-mygxs4p8bk] {
    background: var(--bg-surface);
    color: #6366f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-link[b-mygxs4p8bk] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.profile-picture[b-mygxs4p8bk] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.profile-picture:hover[b-mygxs4p8bk] {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.profile-icon[b-mygxs4p8bk] {
    font-size: 36px;
    color: #667eea;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.profile-icon:hover[b-mygxs4p8bk] {
    transform: scale(1);
    color: #764ba2;
}

/* Loading Overlay Styles */
.loading-overlay[b-mygxs4p8bk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, var(--bg-surface) 0%, var(--bg-body) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content[b-mygxs4p8bk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.loading-title[b-mygxs4p8bk] {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    animation: titlePulse-b-mygxs4p8bk 2s ease-in-out infinite;
    text-transform: lowercase;
    font-variant: small-caps;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    max-width: 90vw;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 640px) {
    .loading-title[b-mygxs4p8bk] {
        font-size: 1.8rem;
    }
}

@keyframes titlePulse-b-mygxs4p8bk {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* Fancy Spinner */
.fancy-spinner[b-mygxs4p8bk] {
    position: relative;
    width: 100px;
    height: 100px;
}

.fancy-spinner .ring[b-mygxs4p8bk] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin-b-mygxs4p8bk 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.fancy-spinner .ring:nth-child(1)[b-mygxs4p8bk] {
    border-top-color: #667eea;
    animation-delay: -0.45s;
}

.fancy-spinner .ring:nth-child(2)[b-mygxs4p8bk] {
    border-top-color: #764ba2;
    animation-delay: -0.3s;
}

.fancy-spinner .ring:nth-child(3)[b-mygxs4p8bk] {
    border-top-color: #667eea;
    animation-delay: -0.15s;
}

.fancy-spinner .dot[b-mygxs4p8bk] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #764ba2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(118, 75, 162, 0.5);
    animation: pulse-b-mygxs4p8bk 1.5s ease-in-out infinite;
}

@keyframes spin-b-mygxs4p8bk {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-b-mygxs4p8bk {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu Header */
.top-row[b-0y2ktmxx2d] {
    min-height: 4.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-brand[b-0y2ktmxx2d] {
    font-size: 1.2rem;
    font-weight: 850;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-transform: lowercase;
    font-variant: small-caps;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
    flex: 1;
    text-align: center;
}

.navbar-toggler[b-0y2ktmxx2d] {
    appearance: none;
    cursor: pointer;
    width: 2.8rem;
    height: 2.8rem;
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover[b-0y2ktmxx2d] {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}

.bi[b-0y2ktmxx2d] {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    opacity: 0.9;
}

/* Mobile nav panel */
.nav-scrollable[b-0y2ktmxx2d] {
    display: none;
}

.nav-scrollable:not(.collapse)[b-0y2ktmxx2d] {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 4.5rem;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1050;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    animation: slideInBottom-b-0y2ktmxx2d 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(139, 92, 246, 0.1);
}

/* Desktop sidebar behavior */
@media (min-width: 641px) {
    .navbar-toggler[b-0y2ktmxx2d] {
        display: none;
    }

    .nav-scrollable[b-0y2ktmxx2d] {
        display: flex !important;
        flex-direction: column;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        height: calc(100vh - 4.5rem);
        position: relative;
        top: 0;
    }
}

/* Nav items */
.nav-item[b-0y2ktmxx2d] {
    padding: 0 1rem;
}

.nav-item:first-of-type[b-0y2ktmxx2d] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-0y2ktmxx2d] {
    padding-bottom: 1rem;
}

.nav-item[b-0y2ktmxx2d]  .nav-link {
    color: rgba(248, 250, 252, 0.85);
    background: transparent;
    border-radius: 14px;
    height: 3.4rem;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-item[b-0y2ktmxx2d]  a.active {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35),
                0 0 0 1px rgba(139, 92, 246, 0.2) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item[b-0y2ktmxx2d]  a.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.nav-item[b-0y2ktmxx2d]  a.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: white;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-item[b-0y2ktmxx2d]  .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 641px) {
    .nav-item[b-0y2ktmxx2d]  .nav-link:hover:not(.active) {
        transform: translateX(8px);
    }
}

/* Admin/Owner Sections — glassmorphic panels */
.admin-section-group[b-0y2ktmxx2d] {
    background: rgba(251, 191, 36, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.12);
    border-left: 2px solid rgba(251, 191, 36, 0.25);
    margin: 0.75rem 1rem 0.75rem 1.25rem;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.05);
}

.owner-section-group[b-0y2ktmxx2d] {
    background: rgba(168, 85, 247, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-left: 2px solid rgba(168, 85, 247, 0.25);
    margin: 0.75rem 1rem 0.75rem 1.25rem;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.05);
}

.admin-section-header[b-0y2ktmxx2d], .owner-section-header[b-0y2ktmxx2d] {
    padding-top: 0.25rem;
}

.admin-toggle[b-0y2ktmxx2d] {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: #fbbf24;
    transition: all 0.3s ease;
    background: transparent !important;
}

.owner-toggle[b-0y2ktmxx2d] {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: #a855f7;
    transition: all 0.3s ease;
    background: transparent !important;
}

.admin-toggle:hover[b-0y2ktmxx2d] {
    color: #f59e0b;
    background: rgba(251, 191, 36, 0.1) !important;
}

.owner-toggle:hover[b-0y2ktmxx2d] {
    color: #c084fc;
    background: rgba(168, 85, 247, 0.1) !important;
}

.admin-items-group[b-0y2ktmxx2d] {
    margin-bottom: 0.5rem;
}

.owner-items-group[b-0y2ktmxx2d] {
    margin-bottom: 0.5rem;
}

.admin-item[b-0y2ktmxx2d], .owner-item[b-0y2ktmxx2d] {
    padding-left: 0.25rem;
}

.admin-item[b-0y2ktmxx2d]  .nav-link, .owner-item[b-0y2ktmxx2d]  .nav-link {
    font-size: 0.85rem;
    height: 3rem;
    background: transparent;
    border: none;
}

.admin-item[b-0y2ktmxx2d]  .nav-link {
    color: #fcd34d;
}

.owner-item[b-0y2ktmxx2d]  .nav-link {
    color: #d8b4fe;
}

.admin-item[b-0y2ktmxx2d]  .nav-link:hover:not(.active),
.owner-item[b-0y2ktmxx2d]  .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border: none;
}

.admin-item[b-0y2ktmxx2d]  a.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.owner-item[b-0y2ktmxx2d]  a.active {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer links */
.mt-auto[b-0y2ktmxx2d] {
    margin-top: auto !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
}

.logout-link[b-0y2ktmxx2d] {
    color: #ef4444 !important;
}

.logout-link:hover[b-0y2ktmxx2d] {
    background: rgba(239, 68, 68, 0.08) !important;
    color: #f87171 !important;
}

/* Animations */
@keyframes slideInBottom-b-0y2ktmxx2d {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-yufasqx3zi],
.components-reconnect-repeated-attempt-visible[b-yufasqx3zi],
.components-reconnect-failed-visible[b-yufasqx3zi],
.components-pause-visible[b-yufasqx3zi],
.components-resume-failed-visible[b-yufasqx3zi],
.components-rejoining-animation[b-yufasqx3zi] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-retrying[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-failed[b-yufasqx3zi],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-yufasqx3zi] {
    display: block;
}

#components-reconnect-modal[b-yufasqx3zi] {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 24rem;
    max-width: 90vw;
    margin: 20vh auto;
    padding: 2.5rem;
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-yufasqx3zi 0.4s ease-in both;
}

#components-reconnect-modal[open][b-yufasqx3zi] {
    animation: components-reconnect-modal-slideUp-b-yufasqx3zi 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, 
               components-reconnect-modal-fadeInOpacity-b-yufasqx3zi 0.4s ease-out 0.1s;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-yufasqx3zi]::backdrop {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: components-reconnect-modal-fadeInOpacity-b-yufasqx3zi 0.4s ease-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-yufasqx3zi {
    0% { transform: translateY(40px) scale(0.9); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-yufasqx3zi {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-yufasqx3zi {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.components-reconnect-container[b-yufasqx3zi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.reconnect-icon-wrapper[b-yufasqx3zi] {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reconnect-icon-wrapper i[b-yufasqx3zi] {
    font-size: 3rem;
    position: absolute;
    z-index: 1;
}

.reconnect-content[b-yufasqx3zi] {
    text-align: center;
}

.reconnect-content h5[b-yufasqx3zi] {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.reconnect-content p[b-yufasqx3zi] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.reconnect-actions[b-yufasqx3zi] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.btn-primary-reconnect[b-yufasqx3zi] {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-primary-reconnect:hover[b-yufasqx3zi] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    filter: brightness(1.1);
}


.components-rejoining-animation[b-yufasqx3zi] {
    width: 80px;
    height: 80px;
    position: relative;
}

.components-rejoining-animation .ring[b-yufasqx3zi] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: components-spin-b-yufasqx3zi 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.components-rejoining-animation .ring:nth-child(1)[b-yufasqx3zi] {
    border-top-color: #6366f1;
    animation-delay: -0.45s;
}

.components-rejoining-animation .ring:nth-child(2)[b-yufasqx3zi] {
    border-top-color: #a855f7;
    animation-delay: -0.3s;
}

@keyframes components-spin-b-yufasqx3zi {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text-warning[b-yufasqx3zi] { color: #f59e0b !important; }
.text-danger[b-yufasqx3zi] { color: #ef4444 !important; }
.fw-bold[b-yufasqx3zi] { font-weight: 700; }
/* /Components/Pages/Account.razor.rz.scp.css */
.account-container[b-2ijxocszsb] {
    animation: fadeIn-b-2ijxocszsb 0.5s ease-out;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes fadeIn-b-2ijxocszsb {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-2ijxocszsb {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-2ijxocszsb] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-2ijxocszsb]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-2ijxocszsb 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-2ijxocszsb] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-2ijxocszsb] {
    opacity: 0.9;
    margin: 0;
}

.account-card[b-2ijxocszsb] {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.account-card h5[b-2ijxocszsb] {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.account-card h5 i[b-2ijxocszsb] {
    color: #667eea;
}

.profile-section[b-2ijxocszsb] {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-picture-container[b-2ijxocszsb] {
    flex-shrink: 0;
}

.current-profile-picture[b-2ijxocszsb] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.default-avatar[b-2ijxocszsb] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.default-avatar span[b-2ijxocszsb] {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.profile-info h3[b-2ijxocszsb] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.role-badge[b-2ijxocszsb] {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.role-owner[b-2ijxocszsb] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.role-admin[b-2ijxocszsb] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.divider[b-2ijxocszsb] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
}

.divider[b-2ijxocszsb]::before,
.divider[b-2ijxocszsb]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span[b-2ijxocszsb] {
    padding: 0 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.role-standard[b-2ijxocszsb] {
    background: var(--badge-muted-bg);
    color: var(--badge-muted-color);
}

.form-control[b-2ijxocszsb] {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus[b-2ijxocszsb] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-control[readonly][b-2ijxocszsb] {
    background: var(--bg-surface-alt);
    color: var(--text-secondary);
}

.form-label[b-2ijxocszsb] {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.preview-image[b-2ijxocszsb] {
    max-width: 150px;
    max-height: 150px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    object-fit: cover;
}

.btn-save[b-2ijxocszsb] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-save:hover[b-2ijxocszsb] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-remove[b-2ijxocszsb] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-remove:hover[b-2ijxocszsb] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.btn-secondary-action[b-2ijxocszsb] {
    background: var(--bg-surface-alt);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary-action:hover[b-2ijxocszsb] {
    background: var(--bg-surface-hover);
    transform: translateY(-2px);
}

.alert[b-2ijxocszsb] {
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
}

.alert-success[b-2ijxocszsb] {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.alert-danger[b-2ijxocszsb] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

@media (max-width: 576px) {
    .profile-section[b-2ijxocszsb] {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1[b-2ijxocszsb] {
        font-size: 1.5rem;
    }
}
/* /Components/Pages/Admin/AdminDashboards.razor.rz.scp.css */
.page-header[b-ed00w22pnb] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-ed00w22pnb]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-ed00w22pnb 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHero-b-ed00w22pnb {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1[b-ed00w22pnb] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-ed00w22pnb] {
    opacity: 0.9;
    margin: 0;
}
/* /Components/Pages/Admin/ApiUpdates.razor.rz.scp.css */
.page-header[b-sbhgfh18ph] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-sbhgfh18ph]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-sbhgfh18ph 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHero-b-sbhgfh18ph {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1[b-sbhgfh18ph] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-sbhgfh18ph] {
    opacity: 0.9;
    margin: 0;
}
/* /Components/Pages/Admin/CreatePies.razor.rz.scp.css */
.pies-container[b-0hchqx98ek] {
    animation: fadeIn-b-0hchqx98ek 0.5s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeIn-b-0hchqx98ek {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-0hchqx98ek {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-0hchqx98ek] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-0hchqx98ek]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-0hchqx98ek 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-0hchqx98ek] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-0hchqx98ek] {
    opacity: 0.9;
    margin: 0;
}

.pies-card[b-0hchqx98ek] {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.btn-bulk[b-0hchqx98ek] {
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-bulk:hover[b-0hchqx98ek] {
    transform: translateY(-2px);
}

.btn-bulk:disabled[b-0hchqx98ek] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-create-all[b-0hchqx98ek] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-create-all:hover[b-0hchqx98ek] {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-delete-all[b-0hchqx98ek] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.btn-delete-all:hover[b-0hchqx98ek] {
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.pies-table[b-0hchqx98ek] {
    margin-bottom: 0;
}

.pies-table thead th[b-0hchqx98ek] {
    border-bottom: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
}

.pies-table tbody td[b-0hchqx98ek] {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.pies-table tbody tr:hover[b-0hchqx98ek] {
    background: var(--bg-surface-hover);
}

.user-name[b-0hchqx98ek] {
    font-weight: 600;
    color: var(--text-heading);
}

.btn-action[b-0hchqx98ek] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-create[b-0hchqx98ek] {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.btn-create:hover[b-0hchqx98ek] {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.btn-create:disabled[b-0hchqx98ek] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-delete[b-0hchqx98ek] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.btn-delete:hover[b-0hchqx98ek] {
    background: rgba(239, 68, 68, 0.25);
    transform: translateY(-2px);
}

.btn-delete:disabled[b-0hchqx98ek] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.toast-notification[b-0hchqx98ek] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 1060;
    animation: slideIn-b-0hchqx98ek 0.3s ease-out;
}

.toast-error[b-0hchqx98ek] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

@keyframes slideIn-b-0hchqx98ek {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .page-header[b-0hchqx98ek] {
        padding: 20px;
    }

    .page-header h1[b-0hchqx98ek] {
        font-size: 1.5rem;
    }

    .pies-card[b-0hchqx98ek] {
        padding: 20px;
    }
}
/* /Components/Pages/Admin/Manage.razor.rz.scp.css */
.page-header[b-sb1o5vhazv] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-sb1o5vhazv]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-sb1o5vhazv 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHero-b-sb1o5vhazv {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1[b-sb1o5vhazv] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-sb1o5vhazv] {
    opacity: 0.9;
    margin: 0;
}
/* /Components/Pages/Admin/Selections.razor.rz.scp.css */
.page-header[b-m4ymrpvr4v] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-m4ymrpvr4v]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-m4ymrpvr4v 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHero-b-m4ymrpvr4v {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1[b-m4ymrpvr4v] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-m4ymrpvr4v] {
    opacity: 0.9;
    margin: 0;
}
/* /Components/Pages/Admin/SellOutRequests.razor.rz.scp.css */
.page-header[b-c81anseng5] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-c81anseng5]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-c81anseng5 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHero-b-c81anseng5 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1[b-c81anseng5] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-c81anseng5] {
    opacity: 0.9;
    margin: 0;
}
/* /Components/Pages/Admin/Users.razor.rz.scp.css */
.users-container[b-vj9ie6uok5] {
    animation: fadeIn-b-vj9ie6uok5 0.5s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeIn-b-vj9ie6uok5 {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-vj9ie6uok5 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-vj9ie6uok5] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-vj9ie6uok5]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-vj9ie6uok5 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-vj9ie6uok5] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-vj9ie6uok5] {
    opacity: 0.9;
    margin: 0;
}

.users-card[b-vj9ie6uok5] {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.btn-add-user[b-vj9ie6uok5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-user:hover[b-vj9ie6uok5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.users-table[b-vj9ie6uok5] {
    margin-bottom: 0;
}

.users-table thead th[b-vj9ie6uok5] {
    border-bottom: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
}

.users-table tbody td[b-vj9ie6uok5] {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.users-table tbody tr:hover[b-vj9ie6uok5] {
    background: var(--bg-surface-hover);
}

.user-profile-pic[b-vj9ie6uok5] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
}

.user-avatar-small[b-vj9ie6uok5] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.user-name[b-vj9ie6uok5] {
    font-weight: 600;
    color: var(--text-heading);
}

.btn-action[b-vj9ie6uok5] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-reset[b-vj9ie6uok5] {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.btn-reset:hover[b-vj9ie6uok5] {
    background: rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}

.btn-delete[b-vj9ie6uok5] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.btn-delete:hover[b-vj9ie6uok5] {
    background: rgba(239, 68, 68, 0.25);
    transform: translateY(-2px);
}

.modal-backdrop[b-vj9ie6uok5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.modal-dialog-centered[b-vj9ie6uok5] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    width: 100%;
    max-width: 450px;
}

.modal-content[b-vj9ie6uok5] {
    background: var(--modal-bg);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-header[b-vj9ie6uok5] {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5[b-vj9ie6uok5] {
    margin: 0;
    font-weight: 600;
}

.modal-body[b-vj9ie6uok5] {
    padding: 24px;
}

.modal-footer[b-vj9ie6uok5] {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.toast-notification[b-vj9ie6uok5] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 1060;
    animation: slideIn-b-vj9ie6uok5 0.3s ease-out;
}

@keyframes slideIn-b-vj9ie6uok5 {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .page-header[b-vj9ie6uok5] {
        padding: 20px;
    }

    .page-header h1[b-vj9ie6uok5] {
        font-size: 1.5rem;
    }

    .users-card[b-vj9ie6uok5] {
        padding: 20px;
    }

    .modal-dialog-centered[b-vj9ie6uok5] {
        max-width: calc(100% - 32px);
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dashboard-container[b-qon1jbi2mf] {
    animation: fadeIn-b-qon1jbi2mf 0.5s ease-out;
}

@keyframes fadeIn-b-qon1jbi2mf {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-qon1jbi2mf {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-qon1jbi2mf] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-qon1jbi2mf]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-qon1jbi2mf 20s linear infinite;
    pointer-events: none;
}

.page-header-content[b-qon1jbi2mf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.dashboard-profile-picture[b-qon1jbi2mf] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.page-header h1[b-qon1jbi2mf] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-qon1jbi2mf] {
    opacity: 0.9;
    margin: 0;
}

.empty-state[b-qon1jbi2mf] {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-surface);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.empty-state i[b-qon1jbi2mf] {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.empty-state h4[b-qon1jbi2mf] {
    color: var(--text-heading);
    margin-bottom: 10px;
}

.empty-state p[b-qon1jbi2mf] {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Stats Row */
.stats-row[b-qon1jbi2mf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card[b-qon1jbi2mf] {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover[b-qon1jbi2mf] {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: #6366f1;
}

.stat-icon[b-qon1jbi2mf] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.position-card .stat-icon[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.value-card .stat-icon[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.growth-card .stat-icon[b-qon1jbi2mf],
.profit-card .stat-icon[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.growth-card.negative .stat-icon[b-qon1jbi2mf],
.profit-card.negative .stat-icon[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-content[b-qon1jbi2mf] {
    display: flex;
    flex-direction: column;
}

.stat-label[b-qon1jbi2mf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value[b-qon1jbi2mf] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
}

.stat-value small[b-qon1jbi2mf] {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.stat-value.frozen-value[b-qon1jbi2mf] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f59e0b;
}

.stat-value.frozen-value i[b-qon1jbi2mf] {
    font-size: 1rem;
}

.stat-value-current[b-qon1jbi2mf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
}


/* Chart Cards */
.chart-card[b-qon1jbi2mf] {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 24px 24px 32px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color-light);
    height: 100%;
}

.chart-card h5[b-qon1jbi2mf] {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.chart-card h5 i[b-qon1jbi2mf] {
    color: #667eea;
}

.chart-header[b-qon1jbi2mf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h5[b-qon1jbi2mf] {
    margin-bottom: 0;
}

/* Time Selector */
.time-selector[b-qon1jbi2mf] {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.time-selector button[b-qon1jbi2mf] {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-selector button:hover[b-qon1jbi2mf] {
    border-color: #667eea;
    color: #667eea;
}

.time-selector button.active[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* Line Chart */
.line-chart-container[b-qon1jbi2mf] {
    position: relative;
}

.chart-canvas-wrapper[b-qon1jbi2mf] {
    position: relative;
    height: 300px;
}

/* Top Performers */
.top-performers-container[b-qon1jbi2mf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.performer-item[b-qon1jbi2mf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-surface-alt);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.performer-item:hover[b-qon1jbi2mf] {
    background: var(--bg-surface-hover);
    transform: translateX(4px);
}

.performer-info[b-qon1jbi2mf] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.performer-symbol[b-qon1jbi2mf] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-heading);
    font-family: monospace;
}

.performer-value[b-qon1jbi2mf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.performer-change[b-qon1jbi2mf] {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.performer-change.positive[b-qon1jbi2mf] {
    color: #10b981;
}

.performer-change.negative[b-qon1jbi2mf] {
    color: #ef4444;
}

/* Bar Chart */
.bar-chart-container[b-qon1jbi2mf] {
    max-height: 400px;
    overflow-y: auto;
}

.bar-row[b-qon1jbi2mf] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.bar-label[b-qon1jbi2mf] {
    width: 70px;
    flex-shrink: 0;
}

.stock-symbol[b-qon1jbi2mf] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
    font-family: monospace;
}

.bar-wrapper[b-qon1jbi2mf] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar[b-qon1jbi2mf] {
    height: 28px;
    border-radius: 6px;
    transition: width 0.5s ease;
    min-width: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bar-name[b-qon1jbi2mf] {
    padding-left: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar.positive[b-qon1jbi2mf] {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.bar.negative[b-qon1jbi2mf] {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.bar-value[b-qon1jbi2mf] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
    min-width: 80px;
}

.bar-weight[b-qon1jbi2mf] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 60px;
    background: var(--bg-surface-alt);
    padding: 2px 8px;
    border-radius: 12px;
    text-align: center;
}

.bar-change[b-qon1jbi2mf] {
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 60px;
}

.bar-change.positive[b-qon1jbi2mf] {
    color: #10b981;
}

.bar-change.negative[b-qon1jbi2mf] {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-qon1jbi2mf] {
        padding: 20px;
    }

    .page-header h1[b-qon1jbi2mf] {
        font-size: 1.5rem;
    }

    .stats-row[b-qon1jbi2mf] {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card[b-qon1jbi2mf] {
        padding: 16px;
    }

    .stat-icon[b-qon1jbi2mf] {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .stat-value[b-qon1jbi2mf] {
        font-size: 1.2rem;
    }

    .chart-header[b-qon1jbi2mf] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .time-selector button[b-qon1jbi2mf] {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .bar-label[b-qon1jbi2mf] {
        width: 50px;
    }

    .bar-value[b-qon1jbi2mf] {
        min-width: 60px;
        font-size: 0.8rem;
    }

    .bar-weight[b-qon1jbi2mf] {
        font-size: 0.75rem;
        min-width: 50px;
        padding: 1px 6px;
    }

    .bar-change[b-qon1jbi2mf] {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-row[b-qon1jbi2mf] {
        grid-template-columns: 1fr;
    }

    .bar-weight[b-qon1jbi2mf] {
        display: none;
    }
}

/* Sell Out Section */
.sell-out-card[b-qon1jbi2mf] {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.sell-out-card.pending[b-qon1jbi2mf] {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.sell-out-card.approved[b-qon1jbi2mf] {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.sell-out-content[b-qon1jbi2mf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sell-out-info h5[b-qon1jbi2mf] {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.sell-out-info p[b-qon1jbi2mf] {
    color: var(--text-secondary);
    margin: 0;
}

.btn-sell-out[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-sell-out:hover[b-qon1jbi2mf] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.status-badge[b-qon1jbi2mf] {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.pending[b-qon1jbi2mf] {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.approved[b-qon1jbi2mf] {
    background: #d1fae5;
    color: #059669;
}

/* Modal Styles */
.modal-backdrop[b-qon1jbi2mf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-dialog-centered[b-qon1jbi2mf] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 90%;
    max-width: 500px;
}

.modal-content[b-qon1jbi2mf] {
    background: var(--modal-bg);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-header[b-qon1jbi2mf] {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5[b-qon1jbi2mf] {
    margin: 0;
    font-weight: 600;
}

.modal-body[b-qon1jbi2mf] {
    padding: 24px;
}

.modal-footer[b-qon1jbi2mf] {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 768px) {
    .sell-out-content[b-qon1jbi2mf] {
        flex-direction: column;
        text-align: center;
    }
}

/* Chart Header Actions */
.chart-header-actions[b-qon1jbi2mf] {
    margin-right: 16px;
}

.btn-expand-chart[b-qon1jbi2mf] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: #6366f1;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-expand-chart:hover[b-qon1jbi2mf] {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    transform: scale(1.1);
}


/* Compare Popup - Glassmorphic */
.compare-backdrop[b-qon1jbi2mf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
}

.compare-popup[b-qon1jbi2mf] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1600px;
    height: 90vh;
    max-height: 90vh;
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.compare-popup.fullscreen[b-qon1jbi2mf] {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
}

.compare-popup-header[b-qon1jbi2mf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.compare-popup-header h5[b-qon1jbi2mf] {
    margin: 0;
    color: white;
    font-weight: 600;
}

.compare-header-actions[b-qon1jbi2mf] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-fullscreen[b-qon1jbi2mf] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.btn-fullscreen:hover[b-qon1jbi2mf] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.compare-chart-actions[b-qon1jbi2mf] {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
}

.btn-reset-zoom[b-qon1jbi2mf] {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 6px 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset-zoom:hover[b-qon1jbi2mf] {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.compare-popup-body[b-qon1jbi2mf] {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.compare-options[b-qon1jbi2mf] {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-surface-alt);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    width: 320px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: calc(90vh - 150px);
    overflow-y: auto;
    transition: all 0.3s ease;
}

.compare-options.collapsed[b-qon1jbi2mf] {
    padding: 12px;
    width: auto;
    min-width: auto;
}

.compare-options.collapsed .options-content[b-qon1jbi2mf] {
    display: none;
}

.compare-options.collapsed .btn-apply[b-qon1jbi2mf] {
    display: none;
}

.compare-options.collapsed .options-toggle[b-qon1jbi2mf] {
    margin-bottom: 0;
    padding: 8px 12px;
}

.options-toggle[b-qon1jbi2mf] {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.options-toggle:hover[b-qon1jbi2mf] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.compare-options.collapsed .options-toggle[b-qon1jbi2mf] {
    margin-bottom: 0;
}

.options-content[b-qon1jbi2mf] {
    display: block;
}

.compare-chart-container[b-qon1jbi2mf] {
    flex: 1;
    width: 100%;
    min-height: 500px;
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 20px;
}


.option-section[b-qon1jbi2mf] {
    margin-bottom: 20px;
}

.option-section:last-of-type[b-qon1jbi2mf] {
    margin-bottom: 0;
}

.option-label[b-qon1jbi2mf] {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}


.stock-checkboxes[b-qon1jbi2mf] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stock-checkbox[b-qon1jbi2mf] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}


.stock-checkbox:hover[b-qon1jbi2mf] {
    background: var(--bg-surface-hover);
    border-color: #6366f1;
}


.stock-checkbox input[type="checkbox"][b-qon1jbi2mf] {
    accent-color: #6366f1;
    width: 16px;
    height: 16px;
}

.date-presets[b-qon1jbi2mf] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.date-presets button[b-qon1jbi2mf] {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}


.date-presets button:hover[b-qon1jbi2mf] {
    background: var(--bg-surface-hover);
    border-color: #6366f1;
}


.date-presets button.active[b-qon1jbi2mf] {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
}

.custom-dates[b-qon1jbi2mf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.date-input[b-qon1jbi2mf] {
    width: 100%;
}

.date-input label[b-qon1jbi2mf] {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 6px;
}


.date-input input[type="date"][b-qon1jbi2mf] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    background: var(--input-bg);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 0.9rem;
}


.btn-apply[b-qon1jbi2mf] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

/* Mobile responsive for compare popup */
@media (max-width: 992px) {
    .compare-options[b-qon1jbi2mf] {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-height: none;
        margin-bottom: 16px;
    }
    
    .compare-chart-container[b-qon1jbi2mf] {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .compare-popup[b-qon1jbi2mf] {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .compare-popup-body[b-qon1jbi2mf] {
        padding: 16px;
    }
    
    .compare-options[b-qon1jbi2mf] {
        padding: 16px;
    }
    
    .custom-dates[b-qon1jbi2mf] {
        flex-direction: column;
        gap: 12px;
    }
    
    .date-input[b-qon1jbi2mf] {
        width: 100%;
    }
    
    .date-presets[b-qon1jbi2mf] {
        flex-wrap: wrap;
    }
    
    .date-presets button[b-qon1jbi2mf] {
        flex: 1;
        min-width: 60px;
        text-align: center;
    }
}

.btn-apply:hover[b-qon1jbi2mf] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.compare-chart-container canvas[b-qon1jbi2mf] {
    width: 100% !important;
    height: 100% !important;
}


/* Sold Out Banner */
.sold-out-banner[b-qon1jbi2mf] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sold-out-banner-content[b-qon1jbi2mf] {
    display: flex;
    align-items: center;
    gap: 24px;
    color: white;
}

.sold-out-icon[b-qon1jbi2mf] {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.sold-out-info[b-qon1jbi2mf] {
    flex: 1;
}

.sold-out-info h3[b-qon1jbi2mf] {
    margin: 0 0 4px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.sold-out-info p[b-qon1jbi2mf] {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.sold-out-value[b-qon1jbi2mf] {
    text-align: right;
    flex-shrink: 0;
}

.sold-out-value .label[b-qon1jbi2mf] {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.sold-out-value .value[b-qon1jbi2mf] {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

/* Sold out mode - muted styling for stats */
.stats-row.sold-out-mode .stat-card[b-qon1jbi2mf] {
    opacity: 0.7;
    position: relative;
}

.stats-row.sold-out-mode .stat-card[b-qon1jbi2mf]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    pointer-events: none;
}

.stats-row.sold-out-mode .stat-card:hover[b-qon1jbi2mf] {
    transform: none;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .sold-out-banner-content[b-qon1jbi2mf] {
        flex-direction: column;
        text-align: center;
    }
    
    .sold-out-value[b-qon1jbi2mf] {
        text-align: center;
    }
    
    .sold-out-value .value[b-qon1jbi2mf] {
        font-size: 1.75rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.landing-container[b-t5y2etjtux] {
    animation: fadeIn-b-t5y2etjtux 0.5s ease-out;
}

@keyframes fadeIn-b-t5y2etjtux {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section[b-t5y2etjtux] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 80px 40px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-section[b-t5y2etjtux]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-t5y2etjtux 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHero-b-t5y2etjtux {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-section h1[b-t5y2etjtux] {
    font-size: 3.5rem;
    font-weight: 850;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section .lead[b-t5y2etjtux] {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-section .btn-light[b-t5y2etjtux] {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-section .btn-light:hover[b-t5y2etjtux] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.countdown-number[b-t5y2etjtux] {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 15px 0;
}

.feature-card[b-t5y2etjtux] {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover[b-t5y2etjtux] {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: #6366f1;
}

.feature-icon[b-t5y2etjtux] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: white;
}

.feature-icon.purple[b-t5y2etjtux] { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.feature-icon.green[b-t5y2etjtux] { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.feature-icon.blue[b-t5y2etjtux] { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }

.feature-card h5[b-t5y2etjtux] {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.feature-card p[b-t5y2etjtux] {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-section[b-t5y2etjtux] {
        padding: 40px 20px;
    }

    .hero-section h1[b-t5y2etjtux] {
        font-size: 2rem;
    }

    .hero-section .lead[b-t5y2etjtux] {
        font-size: 1rem;
    }
}

.settings-card[b-t5y2etjtux] {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.settings-card h5[b-t5y2etjtux] {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.rules-content p[b-t5y2etjtux] {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
/* /Components/Pages/Leaderboard.razor.rz.scp.css */
.leaderboard-container[b-gzm9cicxz5] {
    animation: fadeIn-b-gzm9cicxz5 0.5s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeIn-b-gzm9cicxz5 {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-gzm9cicxz5 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-gzm9cicxz5] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 0;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.page-header-content[b-gzm9cicxz5] {
    flex: 1;
    padding: 40px;
}

.page-header-btn[b-gzm9cicxz5] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 64px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    border: none;
    transition: padding 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
}

.page-header-btn:hover[b-gzm9cicxz5] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 0 64px;
}

.page-header-btn i[b-gzm9cicxz5] {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.page-header-btn .btn-label[b-gzm9cicxz5] {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}

.page-header-btn:hover .btn-label[b-gzm9cicxz5] {
    max-width: 120px;
    opacity: 1;
    margin-left: 8px;
}

.page-header[b-gzm9cicxz5]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-gzm9cicxz5 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-gzm9cicxz5] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-gzm9cicxz5] {
    opacity: 0.9;
    margin: 0;
}

.leaderboard-card[b-gzm9cicxz5] {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: var(--glass-border);
    overflow: hidden;
}

.leaderboard-table[b-gzm9cicxz5] {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead th[b-gzm9cicxz5] {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.leaderboard-table tbody tr[b-gzm9cicxz5] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 12px;
}

.leaderboard-table tbody tr:hover[b-gzm9cicxz5] {
    background: rgba(99, 102, 241, 0.08);
    transform: scale(1.01) translateX(5px);
}

.leaderboard-table tbody td[b-gzm9cicxz5] {
    padding: 16px 12px;
    border-bottom: 1px solid var(--border-color);
}

.rank-col[b-gzm9cicxz5] {
    width: 80px;
}

.rank-badge[b-gzm9cicxz5] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--badge-muted-bg);
    color: var(--badge-muted-color);
}

.rank-badge.gold[b-gzm9cicxz5] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.rank-badge.silver[b-gzm9cicxz5] {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.4);
}

.rank-badge.bronze[b-gzm9cicxz5] {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.rank-gold[b-gzm9cicxz5] {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
}

.rank-silver[b-gzm9cicxz5] {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.1) 0%, transparent 100%);
}

.rank-bronze[b-gzm9cicxz5] {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.1) 0%, transparent 100%);
}

.investor-info[b-gzm9cicxz5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.investor-avatar[b-gzm9cicxz5] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.investor-avatar-default[b-gzm9cicxz5] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.investor-name[b-gzm9cicxz5] {
    font-weight: 600;
    color: var(--text-heading);
}

.portfolio-value[b-gzm9cicxz5] {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.growth-badge[b-gzm9cicxz5] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.growth-badge.positive[b-gzm9cicxz5] {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.growth-badge.negative[b-gzm9cicxz5] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

/* Popup Styles */
.user-popup[b-gzm9cicxz5] {
    position: fixed;
    z-index: 1000;
    background: var(--bg-surface);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 24px;
    min-width: 320px;
    max-width: 400px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    animation: popupFadeIn-b-gzm9cicxz5 0.2s ease-out;
    pointer-events: none;
}

@keyframes popupFadeIn-b-gzm9cicxz5 {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.popup-header[b-gzm9cicxz5] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.popup-avatar[b-gzm9cicxz5] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.popup-avatar-default[b-gzm9cicxz5] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.popup-user-info h4[b-gzm9cicxz5] {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
}

.popup-rank[b-gzm9cicxz5] {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.sold-out-badge[b-gzm9cicxz5] {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.popup-stats[b-gzm9cicxz5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-item[b-gzm9cicxz5] {
    background: var(--bg-surface-alt);
    border-radius: 10px;
    padding: 12px;
}

.stat-label[b-gzm9cicxz5] {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value[b-gzm9cicxz5] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-heading);
}

.stat-value.positive[b-gzm9cicxz5] {
    color: #059669;
}

.stat-value.negative[b-gzm9cicxz5] {
    color: #dc2626;
}

.popup-stocks h5[b-gzm9cicxz5] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.stocks-grid[b-gzm9cicxz5] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stock-chip[b-gzm9cicxz5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: monospace;
}

.empty-state[b-gzm9cicxz5] {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i[b-gzm9cicxz5] {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h4[b-gzm9cicxz5] {
    color: var(--text-heading);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .page-header[b-gzm9cicxz5] {
        padding: 0;
    }

    .page-header-content[b-gzm9cicxz5] {
        padding: 20px;
    }

    .page-header-btn[b-gzm9cicxz5] {
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .page-header h1[b-gzm9cicxz5] {
        font-size: 1.5rem;
    }

    .leaderboard-card[b-gzm9cicxz5] {
        padding: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .leaderboard-table[b-gzm9cicxz5] {
        min-width: 500px;
    }

    .leaderboard-table thead th[b-gzm9cicxz5],
    .leaderboard-table tbody td[b-gzm9cicxz5] {
        padding: 12px 8px;
        white-space: nowrap;
    }

    .rank-col[b-gzm9cicxz5] {
        width: 60px;
    }

    .investor-avatar[b-gzm9cicxz5],
    .investor-avatar-default[b-gzm9cicxz5] {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .portfolio-value[b-gzm9cicxz5] {
        font-size: 0.95rem;
    }

    .growth-badge[b-gzm9cicxz5] {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .user-popup[b-gzm9cicxz5] {
        left: 10px !important;
        right: 10px;
        top: 50% !important;
        transform: translateY(-50%);
        min-width: auto;
        max-width: none;
        max-height: 80vh;
    }
}
/* /Components/Pages/Leaderboards/Leaderboard_Graph.razor.rz.scp.css */
.leaderboard-graph-container[b-3jm24luygx] {
    padding: 2rem;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    animation: fadeIn-b-3jm24luygx 0.5s ease-out;
}

@keyframes fadeIn-b-3jm24luygx {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-3jm24luygx {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-3jm24luygx] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-3jm24luygx]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-3jm24luygx 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-3jm24luygx] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-3jm24luygx] {
    opacity: 0.9;
    margin: 0;
}

.graph-options[b-3jm24luygx] {
    background: var(--card-bg-dark, #1e293b);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.graph-options.collapsed .options-content[b-3jm24luygx] {
    display: none;
}

.options-toggle[b-3jm24luygx] {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.options-content[b-3jm24luygx] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.option-section[b-3jm24luygx] {
    flex: 1;
    min-width: 250px;
}

.option-label[b-3jm24luygx] {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.date-presets[b-3jm24luygx] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.date-presets button[b-3jm24luygx] {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.date-presets button:hover[b-3jm24luygx] {
    background: rgba(255, 255, 255, 0.1);
}

.date-presets button.active[b-3jm24luygx] {
    background: #6366f1;
    border-color: #6366f1;
}

.custom-dates[b-3jm24luygx] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.date-input[b-3jm24luygx] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-input label[b-3jm24luygx] {
    font-size: 0.875rem;
    color: #94a3b8;
}

.date-input input[b-3jm24luygx] {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
}

.btn-apply[b-3jm24luygx] {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-apply:hover[b-3jm24luygx] {
    background: #4f46e5;
}

.chart-container[b-3jm24luygx] {
    background: var(--card-bg, white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 500px;
    position: relative;
}

.chart-placeholder[b-3jm24luygx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: var(--text-secondary, #94a3b8);
}

.chart-placeholder i[b-3jm24luygx] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.chart-placeholder p[b-3jm24luygx] {
    font-size: 1.1rem;
}

/* Dark mode support */
:root[b-3jm24luygx] {
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --card-bg: white;
    --card-bg-dark: #1e293b;
}

[b-3jm24luygx] [data-bs-theme="dark"] .page-header h1,
[data-bs-theme="dark"] .page-header h1[b-3jm24luygx] {
    color: #f1f5f9;
}

[b-3jm24luygx] [data-bs-theme="dark"] .page-header p,
[data-bs-theme="dark"] .page-header p[b-3jm24luygx] {
    color: #94a3b8;
}

[b-3jm24luygx] [data-bs-theme="dark"] .chart-container,
[data-bs-theme="dark"] .chart-container[b-3jm24luygx] {
    background: #1e293b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[b-3jm24luygx] [data-bs-theme="dark"] .chart-placeholder,
[data-bs-theme="dark"] .chart-placeholder[b-3jm24luygx] {
    color: #94a3b8;
}
/* /Components/Pages/MySelections.razor.rz.scp.css */
.selections-container[b-zanolgp9jj] {
    animation: fadeIn-b-zanolgp9jj 0.5s ease-out;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeIn-b-zanolgp9jj {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-zanolgp9jj {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-zanolgp9jj] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-zanolgp9jj]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-zanolgp9jj 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-zanolgp9jj] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-zanolgp9jj] {
    opacity: 0.9;
    margin: 0;
}

.selections-card[b-zanolgp9jj] {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: var(--glass-border);
    margin-bottom: 20px;
}

.stock-entry[b-zanolgp9jj] {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stock-entry:hover[b-zanolgp9jj] {
    background: rgba(241, 245, 249, 0.9);
    border-color: #6366f1;
    transform: translateX(5px);
}

.stock-number[b-zanolgp9jj] {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.stock-input[b-zanolgp9jj] {
    flex: 1;
}

.stock-input-wrapper[b-zanolgp9jj] {
    position: relative;
    display: flex;
    align-items: center;
}

.stock-input-wrapper input[b-zanolgp9jj] {
    padding-right: 36px;
}

.ticker-found[b-zanolgp9jj] {
    position: absolute;
    right: 10px;
    color: #10b981;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.ticker-not-found[b-zanolgp9jj] {
    position: absolute;
    right: 10px;
    color: #ef4444;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.percentage-input[b-zanolgp9jj] {
    width: 130px;
    flex-shrink: 0;
}

.percentage-input-wrapper[b-zanolgp9jj] {
    position: relative;
    display: flex;
    align-items: center;
}

.percentage-input input[b-zanolgp9jj] {
    width: 100%;
    padding: 12px 28px 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: right;
}

.percentage-suffix[b-zanolgp9jj] {
    position: absolute;
    right: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
}

.percentage-input input:focus[b-zanolgp9jj] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.percentage-input input:disabled[b-zanolgp9jj] {
    background: var(--bg-surface-alt);
    cursor: not-allowed;
}

.percentage-total[b-zanolgp9jj] {
    text-align: right;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.percentage-total.valid[b-zanolgp9jj] {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.percentage-total.invalid[b-zanolgp9jj] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.stock-input input[b-zanolgp9jj] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.stock-input input:focus[b-zanolgp9jj] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.stock-input input[b-zanolgp9jj]::placeholder {
    color: #94a3b8;
}

.stock-input input:disabled[b-zanolgp9jj] {
    background: var(--bg-surface-alt);
    cursor: not-allowed;
}

.btn-remove[b-zanolgp9jj] {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover[b-zanolgp9jj] {
    background: rgba(239, 68, 68, 0.25);
    transform: scale(1.05);
}

.btn-remove:disabled[b-zanolgp9jj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-add[b-zanolgp9jj] {
    width: 100%;
    padding: 15px;
    border: 2px dashed var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-add:hover[b-zanolgp9jj] {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.btn-add:disabled[b-zanolgp9jj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit[b-zanolgp9jj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover:not(:disabled)[b-zanolgp9jj] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-submit:disabled[b-zanolgp9jj] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-save[b-zanolgp9jj] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-save:hover:not(:disabled)[b-zanolgp9jj] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.status-badge[b-zanolgp9jj] {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.status-not-started[b-zanolgp9jj] { background: var(--badge-muted-bg); color: var(--badge-muted-color); }
.status-in-progress[b-zanolgp9jj] { background: rgba(245, 158, 11, 0.15); color: #d97706; }
.status-submitted[b-zanolgp9jj] { background: rgba(59, 130, 246, 0.15); color: #2563eb; }
.status-rejected[b-zanolgp9jj] { background: rgba(239, 68, 68, 0.15); color: #dc2626; }
.status-approved[b-zanolgp9jj] { background: rgba(16, 185, 129, 0.15); color: #059669; }

.status-section[b-zanolgp9jj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.alert-rejection[b-zanolgp9jj] {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.alert-rejection h5[b-zanolgp9jj] {
    color: #dc2626;
    margin-bottom: 10px;
}

.alert-approved[b-zanolgp9jj] {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-approved h5[b-zanolgp9jj] {
    color: #059669;
    margin-bottom: 5px;
}

.stock-display[b-zanolgp9jj] {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    margin: 5px;
    font-family: monospace;
    font-weight: 500;
}

.stock-display .stock-shortname[b-zanolgp9jj] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.alert-submitted[b-zanolgp9jj] {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-submitted h5[b-zanolgp9jj] {
    color: #2563eb;
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .page-header[b-zanolgp9jj] {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-header h1[b-zanolgp9jj] {
        font-size: 1.5rem;
    }

    .selections-card[b-zanolgp9jj] {
        padding: 15px;
    }

    .stock-entry[b-zanolgp9jj] {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        position: relative;
        padding-top: 50px;
    }

    .stock-number[b-zanolgp9jj] {
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .btn-remove[b-zanolgp9jj] {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .stock-input[b-zanolgp9jj], .percentage-input[b-zanolgp9jj] {
        width: 100%;
        flex: none;
    }

    .percentage-input input[b-zanolgp9jj] {
        text-align: left;
    }

    .d-flex.gap-3.mt-4[b-zanolgp9jj] {
        flex-direction: column;
    }
    
    .btn-save[b-zanolgp9jj], .btn-submit[b-zanolgp9jj] {
        width: 100%;
        flex: none !important;
    }

    .alert-approved div[b-zanolgp9jj], .alert-submitted div[b-zanolgp9jj] {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .percentage-total[b-zanolgp9jj] {
        text-align: center;
    }

    .status-section[b-zanolgp9jj] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stock-display[b-zanolgp9jj] {
        margin: 5px 0;
        width: 100%;
        box-sizing: border-box;
    }
}
/* /Components/Pages/Overview.razor.rz.scp.css */
.overview-container[b-qi6o191siq] {
    animation: fadeIn-b-qi6o191siq 0.5s ease-out;
}

@keyframes fadeIn-b-qi6o191siq {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateHero-b-qi6o191siq {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header[b-qi6o191siq] {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.page-header[b-qi6o191siq]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateHero-b-qi6o191siq 20s linear infinite;
    pointer-events: none;
}

.page-header h1[b-qi6o191siq] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p[b-qi6o191siq] {
    opacity: 0.9;
    margin: 0;
}

.empty-state[b-qi6o191siq] {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-surface);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.empty-state i[b-qi6o191siq] {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.empty-state h4[b-qi6o191siq] {
    color: var(--text-heading);
    margin-bottom: 10px;
}

.empty-state p[b-qi6o191siq] {
    color: var(--text-secondary);
}

/* Section titles */
.tile-section[b-qi6o191siq] {
    margin-bottom: 30px;
}

.section-title[b-qi6o191siq] {
    color: var(--text-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-left: 4px;
}

/* Tiles grid */
.tiles-row[b-qi6o191siq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Base tile */
.tile[b-qi6o191siq] {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tile:hover[b-qi6o191siq] {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.tile-wide[b-qi6o191siq] {
    grid-column: span 2;
}

/* Tile icon */
.tile-icon[b-qi6o191siq] {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

/* Tile content */
.tile-content[b-qi6o191siq] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tile-label[b-qi6o191siq] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.tile-value[b-qi6o191siq] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-sub[b-qi6o191siq] {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Tile color variants */
.tile-gold:hover[b-qi6o191siq] { border-color: #f59e0b; }
.tile-gold .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.tile-purple:hover[b-qi6o191siq] { border-color: #8b5cf6; }
.tile-purple .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }

.tile-green:hover[b-qi6o191siq] { border-color: #10b981; }
.tile-green .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.tile-red:hover[b-qi6o191siq] { border-color: #ef4444; }
.tile-red .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

.tile-blue:hover[b-qi6o191siq] { border-color: #3b82f6; }
.tile-blue .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

.tile-orange:hover[b-qi6o191siq] { border-color: #f97316; }
.tile-orange .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }

.tile-teal:hover[b-qi6o191siq] { border-color: #14b8a6; }
.tile-teal .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }

.tile-dark-red:hover[b-qi6o191siq] { border-color: #991b1b; }
.tile-dark-red .tile-icon[b-qi6o191siq] { background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%); }

/* Stock list inside tile */
.tile-list[b-qi6o191siq] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.tile-list-item[b-qi6o191siq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    background: var(--bg-surface-alt);
    border-radius: 8px;
}

.stock-symbol[b-qi6o191siq] {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.9rem;
}

.stock-info[b-qi6o191siq] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stock-name[b-qi6o191siq] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.investor-info[b-qi6o191siq] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: help;
}

.stock-count[b-qi6o191siq] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: auto;
    white-space: nowrap;
}

/* Text color helpers */
.text-success[b-qi6o191siq] {
    color: #10b981 !important;
}

.text-danger[b-qi6o191siq] {
    color: #ef4444 !important;
}

/* Clickable tiles */
.tile-clickable[b-qi6o191siq] {
    cursor: pointer;
}

/* Ranking Popup */
.ranking-backdrop[b-qi6o191siq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
}

.ranking-popup[b-qi6o191siq] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: var(--bg-surface);
    border-radius: 24px;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ranking-popup-header[b-qi6o191siq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ranking-popup-header h5[b-qi6o191siq] {
    margin: 0;
    color: white;
    font-weight: 600;
}

.ranking-popup-body[b-qi6o191siq] {
    padding: 16px 24px 24px;
    overflow-y: auto;
}

.ranking-list[b-qi6o191siq] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ranking-item[b-qi6o191siq] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-surface-alt);
    border-radius: 12px;
    border: 1px solid var(--border-color-light);
    transition: all 0.2s ease;
}

.ranking-item:hover[b-qi6o191siq] {
    transform: translateX(4px);
    border-color: #6366f1;
}

.ranking-item.top-1[b-qi6o191siq] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-color: #f59e0b;
}

.ranking-item.top-2[b-qi6o191siq] {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.15) 0%, rgba(100, 116, 139, 0.1) 100%);
    border-color: #94a3b8;
}

.ranking-item.top-3[b-qi6o191siq] {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.15) 0%, rgba(146, 64, 14, 0.1) 100%);
    border-color: #b45309;
}

.ranking-position[b-qi6o191siq] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-heading);
    min-width: 36px;
}

.ranking-item.top-1 .ranking-position[b-qi6o191siq] { color: #f59e0b; }
.ranking-item.top-2 .ranking-position[b-qi6o191siq] { color: #94a3b8; }
.ranking-item.top-3 .ranking-position[b-qi6o191siq] { color: #b45309; }

.ranking-name[b-qi6o191siq] {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.ranking-time[b-qi6o191siq] {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Chart Popup */
.chart-popup[b-qi6o191siq] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--bg-surface);
    border-radius: 24px;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chart-popup-wide[b-qi6o191siq] {
    max-width: 900px;
}

.chart-popup-body[b-qi6o191siq] {
    padding: 20px 24px 24px;
    flex: 1;
    min-height: 350px;
    position: relative;
}

.chart-popup-body canvas[b-qi6o191siq] {
    width: 100% !important;
    height: 100% !important;
    min-height: 320px;
}

.chart-time-presets[b-qi6o191siq] {
    display: flex;
    gap: 6px;
    margin-left: auto;
    margin-right: 12px;
}

.chart-time-presets .btn[b-qi6o191siq] {
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 8px;
}

.ranking-popup.fullscreen[b-qi6o191siq], .chart-popup.fullscreen[b-qi6o191siq] {
    width: 98vw;
    height: 98vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
}

.header-actions[b-qi6o191siq] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.btn-fullscreen[b-qi6o191siq] {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.btn-fullscreen:hover[b-qi6o191siq] {
    opacity: 1;
}

/* Stock filter container */
.stock-filter-container[b-qi6o191siq] {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color-light);
    background: var(--bg-surface-alt);
}

.stock-filter-bar[b-qi6o191siq] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
    max-height: 250px;
    overflow-y: auto;
}

.stock-filter-group[b-qi6o191siq] {
    margin-bottom: 4px;
}

.stock-filter-group-header[b-qi6o191siq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color-light);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-filter-group-header:hover[b-qi6o191siq] {
    background: var(--bg-surface-alt);
}

.stock-filter-group-items[b-qi6o191siq] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px;
    background: rgba(0,0,0,0.05);
    border-radius: 0 0 6px 6px;
}

.stock-filter-item[b-qi6o191siq] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 2px 8px;
    background: var(--bg-surface);
    border-radius: 6px;
    border: 1px solid var(--border-color-light);
    transition: all 0.2s ease;
}

.stock-filter-item:hover[b-qi6o191siq] {
    border-color: #667eea;
}

.stock-filter-item input[type="checkbox"][b-qi6o191siq] {
    accent-color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-qi6o191siq] {
        padding: 20px;
    }

    .page-header h1[b-qi6o191siq] {
        font-size: 1.5rem;
    }

    .tiles-row[b-qi6o191siq] {
        grid-template-columns: 1fr;
    }

    .tile-wide[b-qi6o191siq] {
        grid-column: span 1;
    }

    .tile[b-qi6o191siq] {
        padding: 18px;
    }

    .tile-value[b-qi6o191siq] {
        font-size: 1.1rem;
    }
}
/* /Components/Pages/Owner/Manage/Transfer/Transfer.DataTransfer.razor.rz.scp.css */
/* /Components/Pages/Owner/Manage/Transfer/Transfer.DestroyStructure.razor.rz.scp.css */
/* /Components/Pages/Owner/Manage/Transfer/Transfer.razor.rz.scp.css */
/* /Components/Pages/Owner/Manage/Transfer/Transfer.RemoveOldData.razor.rz.scp.css */
/* /Components/Pages/Owner/Manage/Transfer/Transfer.SqlMigrations.razor.rz.scp.css */
/* /Components/Pages/Owner/Manage/Transfer/Transfer.ValidateSettings.razor.rz.scp.css */
/* /Components/Pages/Owner/Manage/Transfer/Transfer.ValidateTransfer.razor.rz.scp.css */
