/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* ============================================================
   AuthLayout — full-screen dark background for login page
   ============================================================ */

.auth-page[b-78jb5sm5nb] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gph-bg-deep);
    background-image:
        /* Subtle radial glow behind the login card */
        radial-gradient(ellipse at 50% 40%, rgba(201,162,39,0.06) 0%, transparent 65%);
    padding: 1rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================================
   G-STOCK MainLayout — Scoped styles
   Overall shell: sidebar + top-bar + content area
   ============================================================ */

/* ── Page shell ── */
.page[b-d4qqc2sc6o] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--gph-bg);
}

main[b-d4qqc2sc6o] {
    flex: 1;
    background-color: var(--gph-bg);
    min-width: 0; /* prevent flex overflow */
}

/* ── Sidebar ── */
.sidebar[b-d4qqc2sc6o] {
    background-color: var(--gph-bg-deep);
    background-image:
        /* Subtle crosshair watermark behind nav */
        radial-gradient(circle at 50% 15%, rgba(201,162,39,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
    border-right: 1px solid var(--gph-border);
}

/* ── Top Row (breadcrumb / user bar) ── */
.top-row[b-d4qqc2sc6o] {
    background-color: var(--gph-panel);
    border-bottom: 1px solid var(--gph-border);
    justify-content: flex-end;
    height: var(--gph-topbar-h);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
}

.top-row[b-d4qqc2sc6o]  a,
.top-row[b-d4qqc2sc6o]  .btn-link {
    white-space: nowrap;
    text-decoration: none;
    color: var(--gph-muted);
    font-size: 0.8rem;
    transition: color 0.18s ease;
}

.top-row[b-d4qqc2sc6o]  a:hover,
.top-row[b-d4qqc2sc6o]  .btn-link:hover {
    color: var(--gph-gold);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 640.98px) {
    .top-row[b-d4qqc2sc6o] {
        justify-content: space-between;
        padding: 0 0.75rem;
    }

    .top-row[b-d4qqc2sc6o]  a,
    .top-row[b-d4qqc2sc6o]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-d4qqc2sc6o] {
        flex-direction: row;
    }

    .sidebar[b-d4qqc2sc6o] {
        width: var(--gph-sidebar-w);
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
        overflow-x: hidden;
        flex-shrink: 0;
    }

    .top-row[b-d4qqc2sc6o] {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .top-row.auth[b-d4qqc2sc6o]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-d4qqc2sc6o],
    article[b-d4qqc2sc6o] {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================================
   G-STOCK NavMenu — Scoped styles
   Tactical dark sidebar with brass/gold active states
   ============================================================ */

/* ── Brand Header ── */
.nav-brand[b-7peq7f4dc7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid var(--gph-border);
    margin-bottom: 0.25rem;
}

.nav-brand-title[b-7peq7f4dc7] {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gph-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-brand-subtitle[b-7peq7f4dc7] {
    font-size: 0.65rem;
    color: var(--gph-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.2rem;
}

/* ── Hamburger toggler (mobile) ── */
.navbar-toggler[b-7peq7f4dc7] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: var(--gph-text);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid var(--gph-border);
    border-radius: var(--gph-radius);
    background:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,162,39,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
        no-repeat center/1.75rem
        var(--gph-panel-alt);
    transition: background-color var(--gph-transition);
}

.navbar-toggler:checked[b-7peq7f4dc7] {
    background-color: var(--gph-border);
}

/* ── Top mobile row (brand + toggle) ── */
.top-row[b-7peq7f4dc7] {
    background-color: var(--gph-bg-deep);
    border-bottom: 1px solid var(--gph-border);
    min-height: var(--gph-topbar-h);
}

.navbar-brand[b-7peq7f4dc7] {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gph-gold) !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Nav section label (group headers) ── */
.nav-section-label[b-7peq7f4dc7] {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gph-border-light);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 1rem 1rem 0.3rem;
    margin-top: 0.25rem;
}

/* ── Nav items ── */
.nav-item[b-7peq7f4dc7] {
    font-size: 0.85rem;
    padding-bottom: 0.1rem;
}

.nav-item:first-of-type[b-7peq7f4dc7] {
    padding-top: 0.5rem;
}

.nav-item:last-of-type[b-7peq7f4dc7] {
    padding-bottom: 0.5rem;
}

/* Nav link base */
.nav-item[b-7peq7f4dc7]  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gph-text-dim);
    background: none;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0 var(--gph-radius) var(--gph-radius) 0;
    height: 2.4rem;
    padding: 0 1rem 0 0.85rem;
    width: 100%;
    text-decoration: none;
    transition: background-color var(--gph-transition), color var(--gph-transition), border-color var(--gph-transition);
    font-size: 0.83rem;
}

/* Hover state */
.nav-item[b-7peq7f4dc7]  .nav-link:hover {
    background-color: rgba(201, 162, 39, 0.08);
    color: var(--gph-text);
    border-left-color: rgba(201, 162, 39, 0.4);
}

/* Active / selected */
.nav-item[b-7peq7f4dc7]  a.active {
    background-color: rgba(201, 162, 39, 0.12);
    color: var(--gph-gold);
    border-left-color: var(--gph-gold);
    font-weight: 500;
}

/* ── Nav icons ── */
.bi[b-7peq7f4dc7] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background-size: cover;
    opacity: 0.75;
    transition: opacity var(--gph-transition);
}

.nav-item[b-7peq7f4dc7]  a.active .bi,
.nav-item[b-7peq7f4dc7]  .nav-link:hover .bi {
    opacity: 1;
}

/* Icon definitions — white fills for dark bg */
.bi-house-door-fill-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C9A227' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-box-seam-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5 8 5.961 14.154 3.5 8.186 1.113zM15 4.239l-6.5 2.6v7.922l6.5-2.6V4.24zm-7.5 10.522V6.838L1 4.239v7.923l6.5 2.6z'/%3E%3C/svg%3E");
}

.bi-cart-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
}

.bi-people-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8Zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002H7.022ZM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816ZM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
}

.bi-shield-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524z'/%3E%3C/svg%3E");
}

.bi-bar-chart-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath d='M4 11H2v3h2v-3zm5-4H7v7h2V7zm5-5v12h-2V2h2zm-2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1h-2zM6 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm-5 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-7peq7f4dc7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

/* ── Sidebar footer (version/build info) ── */
.nav-footer[b-7peq7f4dc7] {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--gph-border);
    font-size: 0.65rem;
    color: var(--gph-border-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Scrollable nav container ── */
.nav-scrollable[b-7peq7f4dc7] {
    display: none;
    height: calc(100vh - var(--gph-topbar-h));
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.navbar-toggler:checked ~ .nav-scrollable[b-7peq7f4dc7] {
    display: flex;
}

@media (min-width: 641px) {
    /* Hide the mobile top bar — sidebar brand block takes over on desktop */
    .top-row[b-7peq7f4dc7] {
        display: none;
    }

    .navbar-toggler[b-7peq7f4dc7] {
        display: none;
    }

    .nav-scrollable[b-7peq7f4dc7] {
        display: flex !important;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-4g8tj4qdyt],
.components-reconnect-repeated-attempt-visible[b-4g8tj4qdyt],
.components-reconnect-failed-visible[b-4g8tj4qdyt],
.components-pause-visible[b-4g8tj4qdyt],
.components-resume-failed-visible[b-4g8tj4qdyt],
.components-rejoining-animation[b-4g8tj4qdyt] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-retrying[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-failed[b-4g8tj4qdyt],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-4g8tj4qdyt] {
    display: block;
}


#components-reconnect-modal[b-4g8tj4qdyt] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-4g8tj4qdyt 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-4g8tj4qdyt 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-4g8tj4qdyt 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-4g8tj4qdyt]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-4g8tj4qdyt 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-4g8tj4qdyt {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-4g8tj4qdyt {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-4g8tj4qdyt {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-4g8tj4qdyt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-4g8tj4qdyt] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-4g8tj4qdyt] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-4g8tj4qdyt] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-4g8tj4qdyt] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-4g8tj4qdyt] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-4g8tj4qdyt] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-4g8tj4qdyt 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-4g8tj4qdyt] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-4g8tj4qdyt {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
