/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout — scoped styles for the mobile drawer sign-out form.

   The drawer navigation mixes MudNavLink rows with an HTML POST form
   (needed so the browser can clear the application cookie on
   sign-out). The button inside the form carries the same
   `.mud-nav-link` classes as MudNavLink so it sits flush with the
   other rows; we only reset the button-user-agent styles here. */

.l2-drawer-signout[b-pc98rf6ck9] {
    margin: 0;
    padding: 0;
}

.l2-drawer-signout-btn[b-pc98rf6ck9] {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
    width: 100%;
}

.l2-drawer-signout-btn:focus-visible[b-pc98rf6ck9] {
    outline: none;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-uscaics41l],
.components-reconnect-repeated-attempt-visible[b-uscaics41l],
.components-reconnect-failed-visible[b-uscaics41l],
.components-pause-visible[b-uscaics41l],
.components-resume-failed-visible[b-uscaics41l],
.components-rejoining-animation[b-uscaics41l] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-uscaics41l],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-uscaics41l],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-uscaics41l],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-uscaics41l],
#components-reconnect-modal.components-reconnect-retrying[b-uscaics41l],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-uscaics41l],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-uscaics41l],
#components-reconnect-modal.components-reconnect-failed[b-uscaics41l],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-uscaics41l] {
    display: block;
}


#components-reconnect-modal[b-uscaics41l] {
    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-uscaics41l 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-uscaics41l 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-uscaics41l 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-uscaics41l]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-uscaics41l 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-uscaics41l {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-uscaics41l {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-uscaics41l {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-uscaics41l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-uscaics41l] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-uscaics41l] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-uscaics41l] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-uscaics41l] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-uscaics41l] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-uscaics41l] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-uscaics41l 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-uscaics41l] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-uscaics41l {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/StaticLayout.razor.rz.scp.css */
.l2-static-topbar[b-h115oxi96o] {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 16px;
}

@media (min-width: 600px) {
    .l2-static-topbar[b-h115oxi96o] {
        padding: 0 24px;
    }
}
/* /Features/Auth/Components/WelcomeForm.razor.rz.scp.css */
/* WelcomeForm scoped styles — keeps the home-server radio block
   feeling on-brand without breaking Mud's static-SSR contract. */

.l2-welcome-fieldset[b-xi91zkj5oa] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--mud-palette-lines-default, rgba(255, 255, 255, 0.12));
    border-radius: 6px;
}

.l2-welcome-fieldset__legend[b-xi91zkj5oa] {
    display: block;
    margin: 0;
}

.l2-welcome-radio-group[b-xi91zkj5oa] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.l2-welcome-radio-group[b-xi91zkj5oa]  .mud-radio {
    padding: 6px 4px;
    border-radius: 4px;
    transition: background-color 120ms ease;
}

.l2-welcome-radio-group[b-xi91zkj5oa]  .mud-radio:hover {
    background-color: rgba(201, 162, 74, 0.06);
}

.l2-welcome-radio-group[b-xi91zkj5oa]  .mud-radio .mud-typography {
    color: var(--mud-palette-text-primary, #EDEDED);
    letter-spacing: 0.02em;
}
/* /Features/Items/Components/PriceHistoryChart.razor.rz.scp.css */
/* MudChart reserves a hardcoded HorizontalStartSpace (min 30px) and
   HorizontalEndSpace (30px) inside its SVG viewBox for axis labels/padding.
   Those constants are not configurable, so to make the plot visually flush
   with the card's content edges (aligning with CURRENT/RANGE text above),
   we extend the wrapper outward by the same 30px on each side. The axis
   labels then fall into the card's own horizontal padding. */
.l2-price-chart-wrap[b-voi5a24l2p] {
    margin-left: -30px;
    margin-right: -30px;
    width: auto;
}

/* Hide the Y-axis labels group entirely — we rely on the stats row above
   for min/max/median/range context. ::deep pierces MudChart's internals. */
.l2-price-chart-wrap[b-voi5a24l2p]  .mud-charts-yaxis {
    display: none;
}

/* Smaller, dimmer X-axis labels to match the in-house aesthetic. */
.l2-price-chart-wrap[b-voi5a24l2p]  .mud-charts-xaxis text {
    font-size: 10px;
    font-weight: 400;
    fill: var(--mud-palette-text-secondary);
}
/* /Features/Users/Components/UserMenu.razor.rz.scp.css */
/* UserMenu — scoped styles for the sign-out form.

   The sign-out row is a real <form method="post"> (HTTP POST needed
   to clear the cookie server-side). We style its <button> so it
   reads visually like the MudMenuItems above it, without depending
   on MudBlazor markup classes that aren't guaranteed to be stable
   across versions. */

.l2-signout-form[b-8iqhl9zgm5] {
    margin: 0;
    padding: 0;
}

.l2-signout-submit[b-8iqhl9zgm5] {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--mud-palette-text-primary, #E6E1D3);
    cursor: pointer;
    display: block;
    font: inherit;
    padding: 8px 16px;
    text-align: left;
    width: 100%;
}

.l2-signout-submit:hover[b-8iqhl9zgm5],
.l2-signout-submit:focus-visible[b-8iqhl9zgm5] {
    background-color: rgba(201, 162, 75, 0.12);
    outline: none;
}
