/* /Components/Dialogs/PostPreviewDialog.razor.rz.scp.css */
/* Platform mockup: deliberately hardcoded dark chrome — it imitates the target app, not our theme. */
.phone-wrap[b-r3ijr5e1ml] {
    display: flex;
    justify-content: center;
    padding: 4px 0 8px;
}

.phone[b-r3ijr5e1ml] {
    aspect-ratio: 9 / 16;
    background: #101014;
    border: 6px solid #1c1c22;
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    width: 270px;
}

.phone video[b-r3ijr5e1ml] {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.phone-placeholder[b-r3ijr5e1ml] {
    align-items: center;
    color: #6b6b76;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    gap: 8px;
    height: 100%;
    justify-content: center;
}

.phone-topbar[b-r3ijr5e1ml] {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    left: 0;
    position: absolute;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    top: 12px;
    width: 100%;
}

.phone-actions[b-r3ijr5e1ml] {
    align-items: center;
    bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    right: 10px;
}

    .phone-actions[b-r3ijr5e1ml]  svg {
        color: #fff;
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
        font-size: 1.6rem;
    }

.flip-h[b-r3ijr5e1ml] {
    transform: scaleX(-1);
}

.phone-caption[b-r3ijr5e1ml] {
    bottom: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 12px;
    position: absolute;
    right: 56px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.phone-account[b-r3ijr5e1ml] {
    font-size: 0.8rem;
    font-weight: 700;
}

.phone-text[b-r3ijr5e1ml] {
    font-size: 0.75rem;
    line-height: 1.35;
}
/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-canvas[b-hw4ox0tun6] {
    align-items: center;
    background: var(--pf-canvas);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-canvas[b-hw4ox0tun6]  .login-card {
    background: var(--pf-shell);
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kx9u7lz4sz],
.components-reconnect-repeated-attempt-visible[b-kx9u7lz4sz],
.components-reconnect-failed-visible[b-kx9u7lz4sz],
.components-pause-visible[b-kx9u7lz4sz],
.components-resume-failed-visible[b-kx9u7lz4sz],
.components-rejoining-animation[b-kx9u7lz4sz] {
    display: none;
}

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


#components-reconnect-modal[b-kx9u7lz4sz] {
    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-kx9u7lz4sz 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-kx9u7lz4sz 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kx9u7lz4sz 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-kx9u7lz4sz]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kx9u7lz4sz 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kx9u7lz4sz {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kx9u7lz4sz {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

#components-reconnect-modal p[b-kx9u7lz4sz] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kx9u7lz4sz] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kx9u7lz4sz] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-kx9u7lz4sz] {
        background-color: #6b9ed2;
    }

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

    .components-rejoining-animation div[b-kx9u7lz4sz] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kx9u7lz4sz 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kx9u7lz4sz] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kx9u7lz4sz {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Analytics.razor.rz.scp.css */
.pf-filters[b-ai9hnde7fv]  .mud-select {
    min-width: 160px;
}

.pf-panel[b-ai9hnde7fv]  .pf-rank-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.pf-panel[b-ai9hnde7fv]  .pf-rank-name {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pf-panel[b-ai9hnde7fv]  .pf-rank-info {
    min-width: 0;
    padding-right: 12px;
}

.pf-panel[b-ai9hnde7fv]  .pf-rank-bar {
    border-radius: 3px;
    height: 6px !important;
    margin-top: 6px;
}
/* /Components/Pages/Calendar.razor.rz.scp.css */
/* The drafts side panel was removed (2026-08-12); the calendar takes the full width. */
/* /Components/Pages/Landing.razor.rz.scp.css */
/* Landing page — flat "Sapin" identity, dark-mode ready via the global --pf-* vars. */

.lp[b-8xdot8zn00] {
    background: var(--pf-canvas);
    color: var(--pf-ink);
    /* The landing uses a widely familiar face (the app keeps Inter). */
    font-family: "Open Sans", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    min-height: 100vh;
}


.lp h1[b-8xdot8zn00], .lp h2[b-8xdot8zn00], .lp h3[b-8xdot8zn00] {
    line-height: 1.25;
    margin: 0;
}

.lp h2[b-8xdot8zn00] {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
}

.lp section[b-8xdot8zn00] {
    margin: 0 auto;
    max-width: 1080px;
    padding: 4.5rem 2rem;
}

.lp-section-sub[b-8xdot8zn00] {
    color: var(--pf-muted);
    margin: 0.9rem auto 0;
    max-width: 56ch;
    text-align: center;
}

/* --- Nav --- */
.lp-nav[b-8xdot8zn00] {
    align-items: center;
    background: var(--pf-shell);
    border-bottom: 1px solid var(--pf-hairline);
    display: flex;
    gap: 2rem;
    padding: 0.85rem 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.lp-brand[b-8xdot8zn00], .lp-footer-brand[b-8xdot8zn00] {
    align-items: center;
    color: var(--pf-ink);
    display: flex;
    font-size: 1.1rem;
    font-weight: 700;
    gap: 10px;
    text-decoration: none;
}

.lp-brand-mark[b-8xdot8zn00] {
    height: 22px;
    width: 22px;
}

.lp-nav-links[b-8xdot8zn00] {
    display: flex;
    gap: 1.5rem;
}

    .lp-nav-links a[b-8xdot8zn00] {
        color: var(--pf-muted);
        font-size: 0.9rem;
        font-weight: 500;
        text-decoration: none;
    }

        .lp-nav-links a:hover[b-8xdot8zn00] {
            color: var(--pf-ink);
        }

.lp-nav-actions[b-8xdot8zn00] {
    align-items: center;
    display: flex;
    gap: 0.6rem;
    margin-left: auto;
}

/* --- Theme toggle: moon in light mode, sun in dark mode --- */
.lp-theme-toggle[b-8xdot8zn00] {
    align-items: center;
    background: none;
    border: none;
    border-radius: 50%;
    color: var(--pf-muted);
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    transition: background 0.15s ease, color 0.15s ease;
    width: 36px;
}

    .lp-theme-toggle:hover[b-8xdot8zn00] {
        background: var(--pf-hover);
        color: var(--pf-ink);
    }

    .lp-theme-toggle svg[b-8xdot8zn00] {
        height: 19px;
        width: 19px;
    }

.lp-icon-sun[b-8xdot8zn00] {
    display: none;
}

:root.pf-dark .lp-icon-sun[b-8xdot8zn00] {
    display: block;
}

:root.pf-dark .lp-icon-moon[b-8xdot8zn00] {
    display: none;
}

/* --- Buttons --- */
.lp-btn[b-8xdot8zn00] {
    border-radius: 999px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.lp-btn-lg[b-8xdot8zn00] {
    font-size: 1rem;
    padding: 0.75rem 1.7rem;
}

.lp-btn-primary[b-8xdot8zn00] {
    background: var(--pf-primary);
    color: #FFFFFF;
}

    .lp-btn-primary:hover[b-8xdot8zn00] {
        background: var(--pf-primary-hover);
    }

.lp-btn-ghost[b-8xdot8zn00] {
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--pf-input-line);
    color: var(--pf-ink);
}

    .lp-btn-ghost:hover[b-8xdot8zn00] {
        background: var(--pf-hover);
    }

/* --- Hero --- */
.lp-hero[b-8xdot8zn00] {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    padding-top: 4rem;
}

.lp-eyebrow[b-8xdot8zn00] {
    background: var(--pf-amber-tint);
    border-radius: 999px;
    color: var(--pf-amber-on-tint);
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    padding: 0.3rem 0.9rem;
}

.lp-hero h1[b-8xdot8zn00] {
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-hero-copy p[b-8xdot8zn00] {
    color: var(--pf-muted);
    margin: 1.1rem 0 1.6rem;
    max-width: 50ch;
}

.lp-hero-actions[b-8xdot8zn00] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.lp-platforms[b-8xdot8zn00] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.6rem;
}

.lp-platform-chip[b-8xdot8zn00] {
    border: 1px solid var(--pf-hairline);
    border-radius: 999px;
    color: var(--pf-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
}

/* --- Hero mockup (pure CSS product sketch) --- */
.lp-hero-visual[b-8xdot8zn00] {
    position: relative;
}

.lp-mock[b-8xdot8zn00] {
    background: var(--pf-shell);
    border: 1px solid var(--pf-hairline);
    border-radius: 18px;
    padding: 1.1rem;
}

.lp-mock-head[b-8xdot8zn00] {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.lp-mock-title[b-8xdot8zn00] {
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: auto;
}

.lp-mock-pill[b-8xdot8zn00] {
    background: var(--pf-primary-tint);
    border-radius: 999px;
    color: var(--pf-primary-on-tint);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
}

.lp-mock-pill-off[b-8xdot8zn00] {
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--pf-input-line);
    color: var(--pf-muted);
}

.lp-mock-grid[b-8xdot8zn00] {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(5, 1fr);
    min-height: 240px;
}

.lp-mock-day[b-8xdot8zn00] {
    background: var(--pf-canvas);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 6px;
}

    .lp-mock-day > span[b-8xdot8zn00] {
        color: var(--pf-muted);
        font-size: 0.68rem;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
    }

.lp-mock-event[b-8xdot8zn00] {
    background: var(--pf-primary);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 7px;
}

.lp-mock-event-ok[b-8xdot8zn00] {
    background: #1E7B4F;
}

.lp-mock-event i[b-8xdot8zn00] {
    display: block;
    font-style: normal;
    font-weight: 400;
    opacity: 0.75;
}

.lp-mock-event em[b-8xdot8zn00] {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.lp-mock-event b[b-8xdot8zn00] {
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    width: 8px;
}

.lp-mock-float[b-8xdot8zn00] {
    background: var(--pf-shell);
    border: 1px solid var(--pf-hairline);
    border-radius: 12px;
    bottom: -18px;
    box-shadow: 0 10px 28px rgba(28, 35, 33, 0.16);
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0.7rem 0.95rem;
    position: absolute;
    right: -14px;
}

.lp-mock-float-title[b-8xdot8zn00] {
    font-size: 0.8rem;
    font-weight: 600;
}

.lp-mock-float-group[b-8xdot8zn00] {
    align-items: center;
    color: var(--pf-muted);
    display: flex;
    font-size: 0.72rem;
    gap: 6px;
}

    .lp-mock-float-group b[b-8xdot8zn00] {
        background: #8E24AA;
        border-radius: 50%;
        display: inline-block;
        height: 9px;
        width: 9px;
    }

/* --- Fan-out section --- */
.lp-fanout[b-8xdot8zn00] {
    text-align: center;
}

.lp-fanout-svg[b-8xdot8zn00] {
    display: block;
    margin: 2.5rem auto 0;
    max-width: 640px;
    width: 100%;
}

.lp-svg-card[b-8xdot8zn00] {
    fill: var(--pf-shell);
    stroke: var(--pf-hairline);
}

.lp-svg-group[b-8xdot8zn00] {
    fill: var(--pf-primary);
}

.lp-svg-line[b-8xdot8zn00] {
    fill: none;
    stroke: var(--pf-input-line);
    stroke-width: 2;
}

.lp-svg-text[b-8xdot8zn00] {
    fill: var(--pf-ink);
    font-size: 13px;
    font-weight: 600;
}

.lp-svg-small[b-8xdot8zn00] {
    font-size: 10px;
    font-weight: 400;
}

.lp-svg-text-onprimary[b-8xdot8zn00] {
    fill: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
}

/* --- Features --- */
.lp-feature-grid[b-8xdot8zn00] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}

.lp-feature[b-8xdot8zn00] {
    background: var(--pf-shell);
    border-radius: 16px;
    padding: 1.5rem;
}

.lp-feature-ico[b-8xdot8zn00] {
    align-items: center;
    background: var(--pf-primary-tint);
    border-radius: 12px;
    color: var(--pf-primary-on-tint);
    display: flex;
    font-size: 1.1rem;
    height: 40px;
    justify-content: center;
    margin-bottom: 0.9rem;
    width: 40px;
}

.lp-feature h3[b-8xdot8zn00] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.lp-feature p[b-8xdot8zn00] {
    color: var(--pf-muted);
    font-size: 0.88rem;
    margin: 0;
}

/* --- Steps --- */
.lp-steps-list[b-8xdot8zn00] {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
}

.lp-step-num[b-8xdot8zn00] {
    align-items: center;
    background: var(--pf-amber);
    border-radius: 50%;
    color: var(--pf-amber-on);
    display: flex;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    margin-bottom: 0.8rem;
    width: 34px;
}

.lp-steps h3[b-8xdot8zn00] {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.lp-steps p[b-8xdot8zn00] {
    color: var(--pf-muted);
    font-size: 0.88rem;
    margin: 0;
}

/* --- API section --- */
.lp-api[b-8xdot8zn00] {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.lp-api h2[b-8xdot8zn00] {
    text-align: left;
}

.lp-api-copy p[b-8xdot8zn00] {
    color: var(--pf-muted);
    margin: 1rem 0 1.4rem;
}

.lp-api-code[b-8xdot8zn00] {
    background: #171D28;
    border-radius: 16px;
    color: #C7CEDA;
    font-size: 0.8rem;
    line-height: 1.65;
    margin: 0;
    overflow-x: auto;
    padding: 1.3rem 1.5rem;
}

/* --- Pricing --- */
.lp-pricing-grid[b-8xdot8zn00] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}

.lp-price[b-8xdot8zn00] {
    background: var(--pf-shell);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 1.7rem 1.5rem;
    position: relative;
}

.lp-price-hero[b-8xdot8zn00] {
    box-shadow: inset 0 0 0 2px var(--pf-primary);
}

.lp-price-badge[b-8xdot8zn00] {
    background: var(--pf-amber);
    border-radius: 999px;
    color: var(--pf-amber-on);
    font-size: 0.7rem;
    font-weight: 600;
    left: 50%;
    padding: 0.2rem 0.8rem;
    position: absolute;
    top: -11px;
    transform: translateX(-50%);
}

.lp-price h3[b-8xdot8zn00] {
    font-size: 1rem;
}

.lp-price-amount[b-8xdot8zn00] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.6rem 0 0;
}

.lp-price-period[b-8xdot8zn00] {
    color: var(--pf-muted);
    font-size: 0.8rem;
    margin: 0 0 1rem;
}

.lp-price ul[b-8xdot8zn00] {
    color: var(--pf-muted);
    flex: 1;
    font-size: 0.88rem;
    margin: 0 0 1.4rem;
    padding-left: 1.1rem;
}

.lp-price li[b-8xdot8zn00] {
    margin-bottom: 0.35rem;
}

/* --- FAQ --- */
.lp-faq[b-8xdot8zn00] {
    max-width: 720px;
}

.lp-faq details[b-8xdot8zn00] {
    background: var(--pf-shell);
    border-radius: 14px;
    margin-top: 0.7rem;
    padding: 1rem 1.3rem;
}

    .lp-faq details:first-of-type[b-8xdot8zn00] {
        margin-top: 2.2rem;
    }

.lp-faq summary[b-8xdot8zn00] {
    cursor: pointer;
    font-weight: 600;
}

.lp-faq p[b-8xdot8zn00] {
    color: var(--pf-muted);
    font-size: 0.9rem;
    margin: 0.7rem 0 0;
}

/* --- Footer --- */
.lp-footer[b-8xdot8zn00] {
    align-items: center;
    border-top: 1px solid var(--pf-hairline);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1080px;
    padding: 2rem;
}

.lp-footer-links[b-8xdot8zn00] {
    display: flex;
    gap: 1.3rem;
}

    .lp-footer-links a[b-8xdot8zn00] {
        color: var(--pf-muted);
        font-size: 0.85rem;
        text-decoration: none;
    }

        .lp-footer-links a:hover[b-8xdot8zn00] {
            color: var(--pf-ink);
        }

.lp-footer-note[b-8xdot8zn00] {
    color: var(--pf-muted);
    font-size: 0.8rem;
    margin: 0 0 0 auto;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .lp-hero[b-8xdot8zn00],
    .lp-api[b-8xdot8zn00] {
        grid-template-columns: 1fr;
    }

    .lp-feature-grid[b-8xdot8zn00],
    .lp-pricing-grid[b-8xdot8zn00],
    .lp-steps-list[b-8xdot8zn00] {
        grid-template-columns: 1fr;
    }

    .lp-nav-links[b-8xdot8zn00] {
        display: none;
    }

    .lp-mock-float[b-8xdot8zn00] {
        right: 4px;
    }
}
/* /Components/Pages/MediaLibrary.razor.rz.scp.css */
.upload-zone[b-8wnqwbnf9g] {
    border-style: dashed;
    border-width: 2px;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out;
}

    .upload-zone:hover[b-8wnqwbnf9g] {
        border-color: var(--mud-palette-primary);
    }

.text-truncate[b-8wnqwbnf9g] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
