/* /Pages/Steps/ImageEditor.razor.rz.scp.css */
/* Backdrop & modal frame */
.pf-ed-backdrop[b-a3767lv69r] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    z-index: 2147483647 !important;
    align-items: center;
    justify-content: center;

}

.pf-ed-modal[b-a3767lv69r] {
    width: min(1100px, 96vw);
    height: min(90vh, 900px);
    background: #fff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Header */
.pf-ed-header[b-a3767lv69r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eaeaea;
}

.pf-ed-title[b-a3767lv69r] {
    font-weight: 700;
    font-size: 16px;
}

.pf-ed-iconbtn[b-a3767lv69r] {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 8px;
}

    .pf-ed-iconbtn:hover[b-a3767lv69r] {
        background: #f3f4f6;
    }

.pf-ed-icon[b-a3767lv69r] {
    font-size: 18px;
    line-height: 1;
}

/* Body & canvas (critical for long images) */
.pf-ed-body[b-a3767lv69r] {
    flex: 1 1 auto;
    min-height: 0; /* allow child to shrink within flex container */
    padding: 12px;
    display: flex;
}

.pf-ed-canvas[b-a3767lv69r] {
    flex: 1 1 auto;
    min-height: 0; /* prevents overflow with long images */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8fb;
    border: 1px solid #e9edf3;
    border-radius: 10px;
    overflow: hidden; /* contain cropper within rounded corners */
}

.pf-ed-img[b-a3767lv69r] {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* Toolbar */
.pf-ed-toolbar[b-a3767lv69r] {
    border-top: 1px solid #eaeaea;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pf-ed-left[b-a3767lv69r], .pf-ed-right[b-a3767lv69r] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-ed-btn[b-a3767lv69r] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid #dfe3ea;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

    .pf-ed-btn:hover[b-a3767lv69r] {
        background: #f6f7fb;
    }

    .pf-ed-btn i[b-a3767lv69r] {
        font-size: 14px;
    }

.pf-ed-primary[b-a3767lv69r] {
    background: #1c9bef;
    color: #fff;
    border-color: #1c9bef;
}

    .pf-ed-primary:hover[b-a3767lv69r] {
        background: #168cd9;
    }

.pf-ed-ghost[b-a3767lv69r] {
    background: #fff;
    border-color: #dfe3ea;
}

/* Make Cropper's container respect our box */
.pf-ed-canvas :global(.cropper-container)[b-a3767lv69r] {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
}
/* Prevent background scroll when modal open */
.pf-ed-lock[b-a3767lv69r] {
    overflow: hidden !important;
}
.pf-ed-btn[b-a3767lv69r] {
    font-size: 14px;
    padding: 8px 12px;
}

.pf-ed-title[b-a3767lv69r] {
    font-size: 17px;
}

@media (max-width: 700px) {
    .pf-ed-modal[b-a3767lv69r] {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }

    .pf-ed-body[b-a3767lv69r] {
        padding: 8px;
    }

    .pf-ed-toolbar[b-a3767lv69r] {
        flex-direction: column;
        align-items: stretch;
    }

    .pf-ed-left[b-a3767lv69r], .pf-ed-right[b-a3767lv69r] {
        justify-content: center;
    }

    .pf-ed-btn[b-a3767lv69r] {
        font-size: 13px;
        padding: 7px 10px;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-i18a0c809v] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-i18a0c809v] {
    flex: 1;
}

.sidebar[b-i18a0c809v] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-i18a0c809v] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-i18a0c809v]  a, .top-row .btn-link[b-i18a0c809v] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-i18a0c809v] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-i18a0c809v] {
        display: none;
    }

    .top-row.auth[b-i18a0c809v] {
        justify-content: space-between;
    }

    .top-row a[b-i18a0c809v], .top-row .btn-link[b-i18a0c809v] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-i18a0c809v] {
        flex-direction: row;
    }

    .sidebar[b-i18a0c809v] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-i18a0c809v] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-i18a0c809v], article[b-i18a0c809v] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-d1bi3nuctf] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-d1bi3nuctf] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-d1bi3nuctf] {
    font-size: 1.1rem;
}

.oi[b-d1bi3nuctf] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-d1bi3nuctf] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-d1bi3nuctf] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-d1bi3nuctf] {
        padding-bottom: 1rem;
    }

    .nav-item[b-d1bi3nuctf]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-d1bi3nuctf]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-d1bi3nuctf]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-d1bi3nuctf] {
        display: none;
    }

    .collapse[b-d1bi3nuctf] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-d1bi3nuctf] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
