@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/AssesstoPortal/Components/BackButton.razor.rz.scp.css */
[b-db1rv4qs85] .back-button {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    touch-action: manipulation;
}
/* Add this to your MainLayout.razor.css file */
.top-row .back-button[b-db1rv4qs85] {
    margin-left: 10px;
    background-color: transparent;
    color: #0366d6;
}

    .top-row .back-button:hover[b-db1rv4qs85] {
        background-color: rgba(0,0,0,0.05);
    }
[b-db1rv4qs85] .back-button.btn-small {
    padding: 4px 8px;
    font-size: 12px;
    margin: 2px;
}

    .back-button.btn-medium[b-db1rv4qs85] {
        padding: 8px 12px;
        font-size: 14px;
        margin: 5px 0;
    }

    .back-button.btn-large[b-db1rv4qs85] {
        padding: 12px 20px;
        font-size: 16px;
        margin: 10px 0;
    }

[b-db1rv4qs85] .back-arrow {
    margin-right: 3px;
    font-weight: bold;
}
/* _content/AssesstoPortal/Components/CGRangeComponent.razor.rz.scp.css */

.date-range-picker[b-kfaewpxa2x] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-picker-container[b-kfaewpxa2x] {
    display: flex;
    gap: 1rem;
}

.date-picker[b-kfaewpxa2x] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date-range-presets[b-kfaewpxa2x] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preset-buttons[b-kfaewpxa2x] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .date-picker-container[b-kfaewpxa2x] {
        flex-direction: column;
    }
}

/* _content/AssesstoPortal/Components/ModuleAreaComp.razor.rz.scp.css */

.sales-container[b-j9bln9pw56] {
    padding: 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.sales-header[b-j9bln9pw56] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

    .sales-header h1[b-j9bln9pw56] {
        color: #2c3e50;
        font-size: 1.75rem;
        margin: 0;
    }

.quick-actions[b-j9bln9pw56] {
    display: flex;
    gap: 0.5rem;
}

.action-button[b-j9bln9pw56] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .action-button i[b-j9bln9pw56] {
        margin-right: 0.5rem;
    }

    .action-button.primary[b-j9bln9pw56] {
        background-color: #3498db;
        color: white;
    }

        .action-button.primary:hover[b-j9bln9pw56] {
            background-color: #2980b9;
        }

    .action-button.secondary[b-j9bln9pw56] {
        background-color: #f8f9fa;
        color: #3498db;
        border: 1px solid #e0e0e0;
    }

        .action-button.secondary:hover[b-j9bln9pw56] {
            background-color: #e9ecef;
        }

.module-nav[b-j9bln9pw56] {
    margin-bottom: 1.5rem;
}

.nav-tabs[b-j9bln9pw56] {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

    .nav-tabs[b-j9bln9pw56]::-webkit-scrollbar {
        height: 4px;
    }

    .nav-tabs[b-j9bln9pw56]::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

.nav-tab[b-j9bln9pw56] {
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

    .nav-tab i[b-j9bln9pw56] {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }

    .nav-tab.active[b-j9bln9pw56] {
        color: #3498db;
        border-bottom-color: #3498db;
    }

    .nav-tab:hover:not(.active)[b-j9bln9pw56] {
        color: #495057;
        background-color: #f8f9fa;
    }

.content-grid[b-j9bln9pw56] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.menu-card[b-j9bln9pw56] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    border: 1px solid #e0e0e0;
}

    .menu-card:hover[b-j9bln9pw56] {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .menu-card.action[b-j9bln9pw56] {
        background-color: #e3f2fd;
        border-color: #bbdefb;
    }

.card-icon[b-j9bln9pw56] {
    font-size: 1.75rem;
    color: #3498db;
    margin-bottom: 0.75rem;
}

.card-label[b-j9bln9pw56] {
    font-weight: 500;
    text-align: center;
    color: #2c3e50;
}

.folder-badge[b-j9bln9pw56] {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
}

.loading-state[b-j9bln9pw56] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.spinner[b-j9bln9pw56] {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin-b-j9bln9pw56 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-j9bln9pw56 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .sales-header[b-j9bln9pw56] {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-actions[b-j9bln9pw56] {
        margin-top: 1rem;
        width: 100%;
    }

    .action-button[b-j9bln9pw56] {
        flex: 1;
        justify-content: center;
    }

    .content-grid[b-j9bln9pw56] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
/* _content/AssesstoPortal/Components/ModuleAreaComp2.razor.rz.scp.css */

.sales-container[b-fes1ealxsu] {
    padding: 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.sales-header[b-fes1ealxsu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

    .sales-header h1[b-fes1ealxsu] {
        color: #2c3e50;
        font-size: 1.75rem;
        margin: 0;
    }
.search-box[b-fes1ealxsu] {
    flex: 2;
    max-width: 500px;
}
.search-input-wrapper[b-fes1ealxsu] {
    position: relative;
    width: 100%;
}

.search-icon[b-fes1ealxsu] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.search-input[b-fes1ealxsu] {
    width: 100%;
    padding: 0.5rem 2.5rem;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

    .search-input:focus[b-fes1ealxsu] {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    }

.search-clear-btn[b-fes1ealxsu] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

    .search-clear-btn:hover[b-fes1ealxsu] {
        background-color: #f8f9fa;
    }
.quick-actions[b-fes1ealxsu] {
    display: flex;
    gap: 0.5rem;
}

.action-button[b-fes1ealxsu] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .action-button i[b-fes1ealxsu] {
        margin-right: 0.5rem;
    }

    .action-button.primary[b-fes1ealxsu] {
        background-color: #3498db;
        color: white;
    }

        .action-button.primary:hover[b-fes1ealxsu] {
            background-color: #2980b9;
        }

    .action-button.secondary[b-fes1ealxsu] {
        background-color: #f8f9fa;
        color: #3498db;
        border: 1px solid #e0e0e0;
    }

        .action-button.secondary:hover[b-fes1ealxsu] {
            background-color: #e9ecef;
        }

.module-nav[b-fes1ealxsu] {
    margin-bottom: 1.5rem;
}

.nav-tabs[b-fes1ealxsu] {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

    .nav-tabs[b-fes1ealxsu]::-webkit-scrollbar {
        height: 4px;
    }

    .nav-tabs[b-fes1ealxsu]::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

.nav-tab[b-fes1ealxsu] {
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

    .nav-tab i[b-fes1ealxsu] {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }

    .nav-tab.active[b-fes1ealxsu] {
        color: #3498db;
        border-bottom-color: #3498db;
    }

    .nav-tab:hover:not(.active)[b-fes1ealxsu] {
        color: #495057;
        background-color: #f8f9fa;
    }

.content-grid[b-fes1ealxsu] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.menu-card[b-fes1ealxsu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    border: 1px solid #e0e0e0;
}

    .menu-card:hover[b-fes1ealxsu] {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .menu-card.action[b-fes1ealxsu] {
        background-color: #e3f2fd;
        border-color: #bbdefb;
    }

.card-icon[b-fes1ealxsu] {
    font-size: 1.75rem;
    color: #3498db;
    margin-bottom: 0.75rem;
}

.card-label[b-fes1ealxsu] {
    font-weight: 500;
    text-align: center;
    color: #2c3e50;
}

.folder-badge[b-fes1ealxsu] {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
}

.loading-state[b-fes1ealxsu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.spinner[b-fes1ealxsu] {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin-b-fes1ealxsu 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-fes1ealxsu {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .sales-header[b-fes1ealxsu] {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-actions[b-fes1ealxsu] {
        margin-top: 1rem;
        width: 100%;
    }

    .action-button[b-fes1ealxsu] {
        flex: 1;
        justify-content: center;
    }

    .content-grid[b-fes1ealxsu] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
/* _content/AssesstoPortal/Shared/MainLayout.razor.rz.scp.css */
.page[b-yzz1adc913] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-yzz1adc913] {
    flex: 1;
}

.sidebar[b-yzz1adc913] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-yzz1adc913] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-yzz1adc913]  a, .top-row .btn-link[b-yzz1adc913] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-yzz1adc913] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-yzz1adc913] {
        display: none;
    }

    .top-row.auth[b-yzz1adc913] {
        justify-content: space-between;
    }

    .top-row a[b-yzz1adc913], .top-row .btn-link[b-yzz1adc913] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-yzz1adc913] {
        flex-direction: row;
    }

    .sidebar[b-yzz1adc913] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yzz1adc913] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-yzz1adc913], article[b-yzz1adc913] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/AssesstoPortal/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-epgj4uojri] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-epgj4uojri] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-epgj4uojri] {
    font-size: 1.1rem;
}

.oi[b-epgj4uojri] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-epgj4uojri] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-epgj4uojri] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-epgj4uojri] {
        padding-bottom: 1rem;
    }

    .nav-item[b-epgj4uojri]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-epgj4uojri]  a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item[b-epgj4uojri]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-epgj4uojri] {
        display: none;
    }

    .collapse[b-epgj4uojri] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-epgj4uojri] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/AssesstoPortal/Shared/SecLayout.razor.rz.scp.css */
.page[b-meu5xc99wi] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-meu5xc99wi] {
    flex: 1;
}

.sidebar[b-meu5xc99wi] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-meu5xc99wi] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-meu5xc99wi]  a, .top-row .btn-link[b-meu5xc99wi] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-meu5xc99wi] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-meu5xc99wi] {
        display: none;
    }

    .top-row.auth[b-meu5xc99wi] {
        justify-content: space-between;
    }

    .top-row a[b-meu5xc99wi], .top-row .btn-link[b-meu5xc99wi] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-meu5xc99wi] {
        flex-direction: row;
    }

    .sidebar[b-meu5xc99wi] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-meu5xc99wi] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-meu5xc99wi], article[b-meu5xc99wi] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
