/* _content/WEB/Pages/Components/DragDropContainer.razor.rz.scp.css */

/* General reset */
.row[b-3l01nbvy7z] {
    margin-bottom: 1rem;
}

/* Draggable item */
.draggable-item[b-3l01nbvy7z] {
    background-color: #ffffff;
    color: #212529;
    cursor: grab;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-weight: 500;
    width: 100%;
}

    .draggable-item:hover[b-3l01nbvy7z] {
        background-color: #f8f9fa;
    }

    .draggable-item:active[b-3l01nbvy7z] {
        cursor: grabbing;
        box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
    }

/* Drop zone / item pool */
.drop-zone[b-3l01nbvy7z], .item-pool[b-3l01nbvy7z] {
    background-color: #e7f1ff; /* Light Bootstrap primary */
    color: #0d6efd;
    border-radius: 8px;
    border: 2px dashed #cfe2ff;
    padding: 0;
    min-height: 80px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Highlighted when an item is dragged over */
    .drop-zone.drag-over[b-3l01nbvy7z],
    .item-pool.drag-over[b-3l01nbvy7z] {
        background-color: #cfe2ff;
        border-color: #91c3ff;
    }


        .drop-zone.has-item.drag-over[b-3l01nbvy7z] {
            background-color: #b6d4fe;
        }

/* Placeholder text */
.text-muted[b-3l01nbvy7z] {
    color: #6c757d !important;
    font-style: italic;
}

.toolbox[b-3l01nbvy7z] {
    position: absolute;
    top: 4px;
    right: 4px;
    display: none;
    z-index: 10;
}

.draggable-item:hover .toolbox[b-3l01nbvy7z] {
    display: flex;
}

.toolbox button[b-3l01nbvy7z] {
    padding: 2px 6px;
    font-size: 0.8rem;
    line-height: 1;
}
/* _content/WEB/Pages/Components/DropDownList.razor.rz.scp.css */
.wrapper[b-ksqyuxgydg]{
    min-width: 200px;
}
.select-btn[b-ksqyuxgydg], li[b-ksqyuxgydg] {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-btn[b-ksqyuxgydg] {
    display: flex;
    justify-content: space-between;
}

    .select-btn i[b-ksqyuxgydg] {
        transition: transform 0.3s linear;
    }

.wrapper.active .select-btn i[b-ksqyuxgydg] {
    transform: rotate(-180deg);
}

.content-dropdownlist[b-ksqyuxgydg] {
    padding: 5px 10px 5px;
    margin-top: 0px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid gainsboro;
}

.wrapper.active .content[b-ksqyuxgydg] {
    display: block;
}

.content .search[b-ksqyuxgydg] {
    position: relative;
}

.search i[b-ksqyuxgydg] {
    top: 50%;
    left: 15px;
    color: #999;
    pointer-events: none;
    transform: translateY(-50%);
    position: absolute;
}

.search input[b-ksqyuxgydg] {
    padding: 0 20px 0 43px;
    height: 40px;
}

.content .options[b-ksqyuxgydg] {
    margin-bottom: 0px;
    max-height: 250px;
    overflow-y: auto;
    padding: 0;
}

.options[b-ksqyuxgydg]::-webkit-scrollbar {
    width: 7px;
}

.options[b-ksqyuxgydg]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
}

.options[b-ksqyuxgydg]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

    .options[b-ksqyuxgydg]::-webkit-scrollbar-thumb:hover {
        background: #b3b3b3;
    }

.options li[b-ksqyuxgydg] {
    height: 50px;
    padding: 0 13px;
}

    .options li:hover[b-ksqyuxgydg], li.selected[b-ksqyuxgydg] {
        border-radius: 5px;
        background: #f1f1f1;
        border: 1px solid gainsboro;
    }

.selected-item[b-ksqyuxgydg] {
    display: inline-block;
    padding: .35em .65em;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.selected-item-text[b-ksqyuxgydg] {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #a8a8bd;
    padding: .2rem .75rem;
    font-size: 1rem;
    border-radius: 10px;
    width: fit-content;
    background: #e2e2e9;
    margin-bottom: 0;
}
/* _content/WEB/Pages/Components/RichTextEditor.razor.rz.scp.css */
.editor[b-o7uipaslre] {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 100px;
}

.link-popup[b-o7uipaslre] {
    display: none;
    /*position: fixed;*/
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
    z-index: 1000;
}

    .link-popup input[type="file"][b-o7uipaslre] {
        display: block;
    }


.previewArea[b-o7uipaslre] {
    min-height: 50px;
}
.remove-hyperlink[b-o7uipaslre] {
    cursor: pointer;
}

    .remove-hyperlink:hover[b-o7uipaslre] {
        color: red;
    }
/* _content/WEB/Shared/ClientLayout.razor.rz.scp.css */
.page[b-hm2eqp0bn9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-hm2eqp0bn9] {
    flex: 1;
}

.sidebar[b-hm2eqp0bn9] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-hm2eqp0bn9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-hm2eqp0bn9]  a, .top-row .btn-link[b-hm2eqp0bn9] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-hm2eqp0bn9] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-hm2eqp0bn9] {
        display: none;
    }

    .top-row.auth[b-hm2eqp0bn9] {
        justify-content: space-between;
    }

    .top-row a[b-hm2eqp0bn9], .top-row .btn-link[b-hm2eqp0bn9] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-hm2eqp0bn9] {
        flex-direction: row;
    }

    .sidebar[b-hm2eqp0bn9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-hm2eqp0bn9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-hm2eqp0bn9], article[b-hm2eqp0bn9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/WEB/Shared/EmptyLayout.razor.rz.scp.css */
.page[b-tfq1hh8rp1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-tfq1hh8rp1] {
    flex: 1;
}

.sidebar[b-tfq1hh8rp1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-tfq1hh8rp1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-tfq1hh8rp1]  a, .top-row .btn-link[b-tfq1hh8rp1] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-tfq1hh8rp1] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-tfq1hh8rp1] {
        display: none;
    }

    .top-row.auth[b-tfq1hh8rp1] {
        justify-content: space-between;
    }

    .top-row a[b-tfq1hh8rp1], .top-row .btn-link[b-tfq1hh8rp1] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-tfq1hh8rp1] {
        flex-direction: row;
    }

    .sidebar[b-tfq1hh8rp1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-tfq1hh8rp1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-tfq1hh8rp1], article[b-tfq1hh8rp1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/WEB/Shared/MainLayout.razor.rz.scp.css */
.page[b-o2uwfrh5mx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-o2uwfrh5mx] {
    flex: 1;
}

.sidebar[b-o2uwfrh5mx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-o2uwfrh5mx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-o2uwfrh5mx]  a, .top-row .btn-link[b-o2uwfrh5mx] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-o2uwfrh5mx] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-o2uwfrh5mx] {
        display: none;
    }

    .top-row.auth[b-o2uwfrh5mx] {
        justify-content: space-between;
    }

    .top-row a[b-o2uwfrh5mx], .top-row .btn-link[b-o2uwfrh5mx] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-o2uwfrh5mx] {
        flex-direction: row;
    }

    .sidebar[b-o2uwfrh5mx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-o2uwfrh5mx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-o2uwfrh5mx], article[b-o2uwfrh5mx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/WEB/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wstsykqd4g] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-wstsykqd4g] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-wstsykqd4g] {
    font-size: 1.1rem;
}

.oi[b-wstsykqd4g] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-wstsykqd4g] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-wstsykqd4g] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-wstsykqd4g] {
        padding-bottom: 1rem;
    }

    .nav-item[b-wstsykqd4g]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-wstsykqd4g]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-wstsykqd4g]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wstsykqd4g] {
        display: none;
    }

    .collapse[b-wstsykqd4g] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
