/* /Components/Account/Shared/AuthLayout.razor.rz.scp.css */
.auth[b-m6wu44sieb] {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 1rem 4rem;
    background-color: var(--pp-canvas);
}

.auth-card[b-m6wu44sieb] {
    width: 100%;
    max-width: 26rem;
    padding: 2rem;
    background-color: var(--pp-surface);
    border: 1px solid var(--pp-line);
    border-radius: var(--pp-radius-lg);
    box-shadow: var(--pp-shadow-md);
}

    .auth-card[b-m6wu44sieb]  h1 {
        margin-bottom: 0.375rem;
        font-size: 1.5rem;
    }

    /* The scaffolded Identity pages follow the title with an h2 sentence and a rule; show it as a subtitle. */
    .auth-card[b-m6wu44sieb]  h2,
    .auth-card[b-m6wu44sieb]  .auth-subtitle {
        margin-bottom: 1.5rem;
        font-size: 0.9375rem;
        font-weight: 400;
        letter-spacing: 0;
        color: var(--pp-muted);
    }

    .auth-card[b-m6wu44sieb]  hr {
        display: none;
    }

    /* Those pages also size their forms with grid columns, which the card already does. */
    .auth-card[b-m6wu44sieb]  .row > [class*="col-"] {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .auth-card[b-m6wu44sieb]  .auth-divider {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.25rem 0;
        font-size: 0.8125rem;
        color: var(--pp-muted);
    }

        .auth-card[b-m6wu44sieb]  .auth-divider::before,
        .auth-card[b-m6wu44sieb]  .auth-divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background-color: var(--pp-line);
        }

    .auth-card[b-m6wu44sieb]  .auth-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        font-size: 0.875rem;
    }

        .auth-card[b-m6wu44sieb]  .auth-row .form-check {
            margin: 0;
        }

    .auth-card[b-m6wu44sieb]  .auth-footer {
        margin: 1.5rem 0 0;
        padding-top: 1.25rem;
        font-size: 0.875rem;
        text-align: center;
        color: var(--pp-muted);
        border-top: 1px solid var(--pp-line);
    }

        .auth-card[b-m6wu44sieb]  .auth-footer p {
            margin: 0 0 0.25rem;
        }

@media (min-width: 768px) {
    .auth[b-m6wu44sieb] {
        padding-top: 5rem;
    }
}

@media (max-width: 479.98px) {
    .auth-card[b-m6wu44sieb] {
        padding: 1.5rem 1.25rem;
    }
}
/* /Components/Account/Shared/ManageLayout.razor.rz.scp.css */
.manage[b-95b9q3jly3] {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.manage-body[b-95b9q3jly3] {
    min-width: 0;
}

    /* Each settings page opens with an h3 title */
    .manage-body[b-95b9q3jly3]  h3 {
        margin-bottom: 1rem;
        font-size: 1.125rem;
    }

@media (min-width: 992px) {
    .manage[b-95b9q3jly3] {
        grid-template-columns: 14rem minmax(0, 1fr);
    }

    .manage-nav[b-95b9q3jly3] {
        position: sticky;
        top: 2rem;
    }
}

@media (max-width: 991.98px) {
    /* Settings sections become a scrolling row of tabs above the page */
    .manage-nav[b-95b9q3jly3]  .nav {
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .manage-nav[b-95b9q3jly3]  .nav-link {
        white-space: nowrap;
    }
}
/* /Components/Layout/EditorLayout.razor.rz.scp.css */
.editor-host[b-rfli5qw9ux] {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: #1e1e1e;
    color: #e6e6e6;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Application shell */

.app-shell[b-8cko4ato63] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar[b-8cko4ato63] {
    position: relative;
    background-color: var(--pp-surface);
    border-bottom: 1px solid var(--pp-line);
}

.app-main[b-8cko4ato63] {
    flex: 1;
    min-width: 0;
}

.app-content[b-8cko4ato63] {
    width: 100%;
    max-width: 76rem;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

@media (min-width: 768px) {
    .app-shell[b-8cko4ato63] {
        flex-direction: row;
    }

    .sidebar[b-8cko4ato63] {
        position: sticky;
        top: 0;
        flex: none;
        width: 15rem;
        height: 100vh;
        border-right: 1px solid var(--pp-line);
        border-bottom: 0;
    }

    .app-content[b-8cko4ato63] {
        padding: 2rem 2.5rem 4rem;
    }
}

/* Public shell */

.public-shell[b-8cko4ato63] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--pp-surface);
}

.public-main[b-8cko4ato63] {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.public-footer[b-8cko4ato63] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.25rem 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--pp-muted);
    border-top: 1px solid var(--pp-line);
}

    .public-footer > span:first-child[b-8cko4ato63] {
        font-weight: 600;
        color: var(--pp-ink-soft);
    }

#blazor-error-ui[b-8cko4ato63] {
    color-scheme: light only;
    background: #fffaeb;
    border-top: 1px solid #fedf89;
    bottom: 0;
    box-shadow: 0 -4px 12px rgba(24, 24, 27, 0.08);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-8cko4ato63] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.625rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Sidebar for signed-in users */

.nav-brand[b-2jgvddnhus] {
    display: flex;
    align-items: center;
    height: 3.75rem;
    padding: 0 1.25rem;
}

.navbar-toggler[b-2jgvddnhus] {
    appearance: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.5rem;
    position: absolute;
    top: 0.625rem;
    right: 1rem;
    border: 1px solid var(--pp-line-strong);
    border-radius: var(--pp-radius);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233f3f46' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center / 1.5rem var(--pp-surface);
}

    .navbar-toggler:checked[b-2jgvddnhus] {
        background-color: var(--pp-hover);
    }

    .navbar-toggler:focus-visible[b-2jgvddnhus] {
        outline: none;
        box-shadow: var(--pp-focus-ring);
    }

.nav-scrollable[b-2jgvddnhus] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-2jgvddnhus] {
    display: block;
}

.nav-main[b-2jgvddnhus] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-height: 100%;
    padding: 0.5rem 0.75rem 1rem;
}

    .nav-main[b-2jgvddnhus]  .nav-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        min-height: 2.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.9375rem;
        font-weight: 500;
        text-align: left;
        color: var(--pp-ink-soft);
        background: none;
        border: 0;
        border-radius: var(--pp-radius);
        transition: background-color 0.12s ease, color 0.12s ease;
    }

        .nav-main[b-2jgvddnhus]  .nav-link .pp-icon {
            color: var(--pp-muted);
        }

        .nav-main[b-2jgvddnhus]  .nav-link:hover {
            color: var(--pp-ink);
            text-decoration: none;
            background-color: var(--pp-hover);
        }

        .nav-main[b-2jgvddnhus]  .nav-link.active {
            color: var(--pp-accent-active);
            background-color: var(--pp-accent-soft);
        }

            .nav-main[b-2jgvddnhus]  .nav-link.active .pp-icon {
                color: var(--pp-accent);
            }

.nav-group-label[b-2jgvddnhus] {
    padding: 1rem 0.75rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pp-muted);
}

.nav-account[b-2jgvddnhus] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--pp-line);
}

.nav-user-name[b-2jgvddnhus] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .navbar-toggler[b-2jgvddnhus] {
        display: none;
    }

    .nav-scrollable[b-2jgvddnhus] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.75rem);
        overflow-y: auto;
    }

}

@media (max-width: 767.98px) {
    .nav-account[b-2jgvddnhus] {
        margin-top: 0.75rem;
    }
}

/* Header for visitors */

.public-bar[b-2jgvddnhus] {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--pp-line);
    backdrop-filter: saturate(180%) blur(8px);
}

.public-nav[b-2jgvddnhus] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 479.98px) {
    .public-bar[b-2jgvddnhus] {
        padding: 0.5rem 1rem;
    }

    /* Log in stays; the pages themselves offer account creation */
    .public-nav .btn-primary[b-2jgvddnhus] {
        display: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-fsbbhjmnqp],
.components-reconnect-repeated-attempt-visible[b-fsbbhjmnqp],
.components-reconnect-failed-visible[b-fsbbhjmnqp],
.components-pause-visible[b-fsbbhjmnqp],
.components-resume-failed-visible[b-fsbbhjmnqp],
.components-rejoining-animation[b-fsbbhjmnqp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-retrying[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-failed[b-fsbbhjmnqp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-fsbbhjmnqp] {
    display: block;
}


#components-reconnect-modal[b-fsbbhjmnqp] {
    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-fsbbhjmnqp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-fsbbhjmnqp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-fsbbhjmnqp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-fsbbhjmnqp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-fsbbhjmnqp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-fsbbhjmnqp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-fsbbhjmnqp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-fsbbhjmnqp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-fsbbhjmnqp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-fsbbhjmnqp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-fsbbhjmnqp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-fsbbhjmnqp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-fsbbhjmnqp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-fsbbhjmnqp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-fsbbhjmnqp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-fsbbhjmnqp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-fsbbhjmnqp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-fsbbhjmnqp {
    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/Home.razor.rz.scp.css */
/* Signed-in start page */

.quick-links[b-arbujqy9ao] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 1rem;
    margin: 0;
}

.quick-link[b-arbujqy9ao] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    height: 100%;
    padding: 1.25rem;
    color: var(--pp-ink);
    background-color: var(--pp-surface);
    border: 1px solid var(--pp-line);
    border-radius: var(--pp-radius-lg);
    box-shadow: var(--pp-shadow-sm);
    transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

    .quick-link:hover[b-arbujqy9ao] {
        text-decoration: none;
        border-color: rgba(var(--pp-accent-rgb), 0.45);
        box-shadow: var(--pp-shadow-md);
        transform: translateY(-1px);
    }

.quick-link-icon[b-arbujqy9ao], .feature-icon[b-arbujqy9ao] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--pp-accent);
    background-color: var(--pp-accent-soft);
    border-radius: var(--pp-radius);
}

.quick-link-title[b-arbujqy9ao] {
    font-weight: 600;
}

.quick-link-text[b-arbujqy9ao] {
    font-size: 0.875rem;
    color: var(--pp-muted);
}

/* Landing page */

.hero[b-arbujqy9ao] {
    display: grid;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 3rem;
}

.hero-eyebrow[b-arbujqy9ao] {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pp-accent-active);
    background-color: var(--pp-accent-soft);
    border-radius: 999px;
}

.hero-title[b-arbujqy9ao] {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.hero-lead[b-arbujqy9ao] {
    max-width: 34rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--pp-ink-soft);
}

.hero-actions[b-arbujqy9ao] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .hero[b-arbujqy9ao] {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        padding: 5.5rem 1.5rem 5rem;
    }
}

/* Editor illustration, drawn with boxes so it needs no image and no inline style */

.mock[b-arbujqy9ao] {
    overflow: hidden;
    background-color: #1f1f23;
    border: 1px solid #2e2e33;
    border-radius: 0.875rem;
    box-shadow: var(--pp-shadow-lg);
}

.mock-bar[b-arbujqy9ao] {
    display: flex;
    gap: 0.375rem;
    padding: 0.75rem 0.875rem;
    background-color: #2c2c2c;
    border-bottom: 1px solid #3a3a3a;
}

    .mock-bar span[b-arbujqy9ao] {
        width: 0.625rem;
        height: 0.625rem;
        background-color: #52525b;
        border-radius: 50%;
    }

.mock-body[b-arbujqy9ao] {
    display: grid;
    grid-template-columns: 22% 1fr 22%;
    min-height: 19rem;
}

.mock-panel[b-arbujqy9ao] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem 0.75rem;
    background-color: #26262a;
}

.mock-line[b-arbujqy9ao], .mock-field[b-arbujqy9ao] {
    display: block;
    height: 0.5rem;
    background-color: #3f3f46;
    border-radius: 999px;
}

.mock-line-strong[b-arbujqy9ao] {
    width: 55%;
    background-color: #71717a;
}

.mock-line-short[b-arbujqy9ao] {
    width: 70%;
}

.mock-line-active[b-arbujqy9ao] {
    background-color: #6366f1;
}

.mock-field[b-arbujqy9ao] {
    height: 1.25rem;
    background-color: #18181b;
    border: 1px solid #3f3f46;
    border-radius: 0.25rem;
}

.mock-swatches[b-arbujqy9ao] {
    display: flex;
    gap: 0.375rem;
}

    .mock-swatches i[b-arbujqy9ao] {
        width: 1.125rem;
        height: 1.125rem;
        border-radius: 0.25rem;
        background-color: #6366f1;
    }

        .mock-swatches i:nth-child(2)[b-arbujqy9ao] {
            background-color: #f59e0b;
        }

        .mock-swatches i:nth-child(3)[b-arbujqy9ao] {
            background-color: #10b981;
        }

.mock-canvas[b-arbujqy9ao] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #121214;
    background-image: radial-gradient(#2a2a2f 1px, transparent 1px);
    background-size: 16px 16px;
}

.mock-frame[b-arbujqy9ao] {
    position: relative;
    width: 100%;
    max-width: 17rem;
    aspect-ratio: 4 / 3;
    background-color: #ffffff;
    border-radius: 0.25rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.mock-shape[b-arbujqy9ao] {
    position: absolute;
    display: block;
}

.mock-shape-header[b-arbujqy9ao] {
    inset: 8% 8% auto 8%;
    height: 9%;
    background-color: #e4e4e7;
    border-radius: 0.1875rem;
}

.mock-shape-circle[b-arbujqy9ao] {
    top: 26%;
    left: 8%;
    width: 24%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 50%;
}

.mock-shape-card[b-arbujqy9ao] {
    top: 26%;
    right: 8%;
    width: 50%;
    height: 40%;
    background: linear-gradient(135deg, #6366f1, #4338ca);
    border-radius: 0.375rem;
}

.mock-shape-button[b-arbujqy9ao] {
    left: 8%;
    bottom: 10%;
    width: 30%;
    height: 10%;
    background-color: #18181b;
    border-radius: 999px;
}

.mock-selection[b-arbujqy9ao] {
    position: absolute;
    top: 23%;
    right: 5.5%;
    width: 55%;
    height: 46%;
    border: 1.5px solid #38bdf8;
}

    .mock-selection i[b-arbujqy9ao] {
        position: absolute;
        width: 0.4375rem;
        height: 0.4375rem;
        background-color: #ffffff;
        border: 1.5px solid #38bdf8;
    }

        .mock-selection i:nth-child(1)[b-arbujqy9ao] {
            top: -0.25rem;
            left: -0.25rem;
        }

        .mock-selection i:nth-child(2)[b-arbujqy9ao] {
            top: -0.25rem;
            right: -0.25rem;
        }

        .mock-selection i:nth-child(3)[b-arbujqy9ao] {
            bottom: -0.25rem;
            left: -0.25rem;
        }

        .mock-selection i:nth-child(4)[b-arbujqy9ao] {
            right: -0.25rem;
            bottom: -0.25rem;
        }

@media (max-width: 575.98px) {
    .mock-body[b-arbujqy9ao] {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mock-panel[b-arbujqy9ao] {
        display: none;
    }
}

/* Features */

.features[b-arbujqy9ao] {
    width: 100%;
    padding: 4rem 1.5rem 5rem;
    background-color: var(--pp-canvas);
    border-top: 1px solid var(--pp-line);
}

.features-heading[b-arbujqy9ao] {
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    font-size: clamp(1.375rem, 1rem + 1.2vw, 1.875rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    text-align: center;
    text-wrap: balance;
}

.feature-grid[b-arbujqy9ao] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.feature[b-arbujqy9ao] {
    padding: 1.5rem;
    background-color: var(--pp-surface);
    border: 1px solid var(--pp-line);
    border-radius: var(--pp-radius-lg);
}

    .feature h3[b-arbujqy9ao] {
        margin-bottom: 0.375rem;
        font-size: 1rem;
    }

    .feature p[b-arbujqy9ao] {
        margin: 0;
        font-size: 0.9375rem;
        color: var(--pp-muted);
    }
/* /Components/Shell/FileCard.razor.rz.scp.css */
.file-card[b-zjexeaidh3] {
    overflow: hidden;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

    .file-card:hover[b-zjexeaidh3], .file-card:focus-within[b-zjexeaidh3] {
        border-color: rgba(var(--pp-accent-rgb), 0.45);
        box-shadow: var(--pp-shadow-md);
        transform: translateY(-1px);
    }

.file-thumbnail[b-zjexeaidh3] {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: repeating-conic-gradient(#f4f4f5 0% 25%, #ececef 0% 50%) 50% / 20px 20px;
    border-bottom: 1px solid var(--pp-line);
    text-decoration: none;
}

.file-thumbnail-image[b-zjexeaidh3] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.file-kind[b-zjexeaidh3] {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pp-muted);
    background: var(--pp-surface);
    padding: 0.1875rem 0.5rem;
    border: 1px solid var(--pp-line);
    border-radius: 999px;
}

.file-body[b-zjexeaidh3] {
    padding: 0.75rem 0.875rem;
}

.file-name[b-zjexeaidh3] {
    display: block;
    font-weight: 600;
    color: var(--pp-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .file-name:hover[b-zjexeaidh3] {
        color: var(--pp-accent-active);
    }

.file-meta[b-zjexeaidh3] {
    font-size: 0.8125rem;
    color: var(--pp-muted);
}

.file-actions[b-zjexeaidh3] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.125rem;
    margin: 0.5rem -0.375rem -0.25rem;
}
