/* /UI/Layout/MainLayout.razor.rz.scp.css */
.page[b-mtwdfb8fri] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mtwdfb8fri] {
    flex: 1;
}

.sidebar[b-mtwdfb8fri] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mtwdfb8fri] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mtwdfb8fri]  a, .top-row[b-mtwdfb8fri]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mtwdfb8fri]  a:hover, .top-row[b-mtwdfb8fri]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mtwdfb8fri]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mtwdfb8fri] {
        justify-content: space-between;
    }

    .top-row[b-mtwdfb8fri]  a, .top-row[b-mtwdfb8fri]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mtwdfb8fri] {
        flex-direction: row;
    }

    .sidebar[b-mtwdfb8fri] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mtwdfb8fri] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mtwdfb8fri]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mtwdfb8fri], article[b-mtwdfb8fri] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mtwdfb8fri] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mtwdfb8fri] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /UI/Pages/Admin/Components/AssignmentMembersTab.razor.rz.scp.css */
[b-wxbji3wq3w] .assign-member .k-table-row {
    height: 20px !important;
    font-size: 11px;
}

[b-wxbji3wq3w] .k-grid .k-table-row.k-table-alt-row {
    background-color: #E9F0F8;
}

.custom-bar[b-wxbji3wq3w] {
    display:block;
    width: 100%;
    max-width: 100%;
    height: 3px;
    flex-shrink:0;
}
.assign-member .assignment-name[b-wxbji3wq3w] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400; /* Semi-bold */
    color: black !important;
    cursor:none !important;
}

.assign-member .other-column-text[b-wxbji3wq3w] {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: normal; /* Regular */
    color: #000000;
}

.sticky-bar[b-wxbji3wq3w] {
    position: sticky;
    bottom: 64px; /* footer height */
    z-index: 9;
    background-color: #e5e7eb;
}

.inner-scroll[b-wxbji3wq3w] {
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}
/* /UI/Pages/Admin/Components/AssignmentSettings.razor.rz.scp.css */
/* ===== DRAWER STRUCTURE ===== */
.assignment-settings-overlay[b-7ghoydkpc5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
}

/* Main drawer - 3 sections: header, content, footer */
.assignment-settings-drawer[b-7ghoydkpc5] {
    width: 75%;
    height: 100vh;
    background-color: #f6f7f9;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    overflow: hidden; /* Ensure no parent scroll */
}

    .assignment-settings-drawer.closing[b-7ghoydkpc5] {
        transform: translateX(100%);
    }

    .assignment-settings-drawer.entering[b-7ghoydkpc5] {
        transform: translateX(100%);
    }

/* ===== FIXED HEADER (Top) ===== */
.drawer-header[b-7ghoydkpc5] {
    background-color: var(--color-blue-light) !important;
    color: var(--color-primary-blue) !important;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
    height: 45px;
    flex-shrink: 0;
}

/* ===== SCROLLABLE CONTENT (Middle) ===== */
.drawer-content[b-7ghoydkpc5] {
    flex: 1;
    overflow: hidden; /* Prevent parent scroll, only allow inner scroll */
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.assignment-info-section[b-7ghoydkpc5] {
    background-color: white;
    padding: 10px 30px 0 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    min-height: 0;
}

/* Fixed assignment info at top */
.assignment-info-header[b-7ghoydkpc5] {
    flex-shrink: 0;
}

/* TabStrip fills remaining space and scrolls */
.candidate-tabstrip[b-7ghoydkpc5] {
    flex-1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

    .candidate-tabstrip .k-tabstrip-items-wrapper[b-7ghoydkpc5] {
        flex-shrink: 0;
    }

    .candidate-tabstrip .k-tabstrip-content[b-7ghoydkpc5] {
        flex: 1;
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
        padding: 1rem;
    }

/* Base Criteria scrollable content */
.base-criteria-content[b-7ghoydkpc5] {
    padding-right: 0.5rem;
}

/* ===== FIXED FOOTER (Bottom) ===== */
.drawer-footer[b-7ghoydkpc5] {
    flex-shrink: 0;
    background-color: #ffffff;
    padding: 5px 30px;
    border-top: 1pt solid #D9D9D9;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

/* ===== COMMON ELEMENTS ===== */
.custom-bar[b-7ghoydkpc5] {
    display: block;
    width: 100%;
    height: 3px;
    flex-shrink: 0;
}

.tab-bar[b-7ghoydkpc5] {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 3px;
    flex-shrink: 0;
}

.vertical-divider[b-7ghoydkpc5] {
    width: 4px;
    height: 39px;
    align-self: center;
    flex-shrink: 0;
}

.range-separator[b-7ghoydkpc5] {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

/* ===== LOADING INDICATOR ===== */
.loading-indicator[b-7ghoydkpc5] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

    .loading-indicator .k-loader[b-7ghoydkpc5] {
        width: 16px;
        height: 16px;
    }

/* ===== MULTISELECT STYLES ===== */
.criteria-multiselect .k-multiselect-wrap[b-7ghoydkpc5] {
    min-height: 40px;
    border-radius: 4px;
    border: 1px solid #d4d4d8;
    background-color: white;
}

    .criteria-multiselect .k-multiselect-wrap:focus-within[b-7ghoydkpc5] {
        border-color: #526c8f;
        box-shadow: 0 0 0 2px rgba(82, 108, 143, 0.1);
    }

.criteria-multiselect .k-chip[b-7ghoydkpc5] {
    background-color: #e8f4fd;
    color: #0a66c2;
    border: 1px solid #b3d9ff;
    border-radius: 16px;
    font-size: 12px;
    margin: 2px;
    padding: 4px 8px;
}

    .criteria-multiselect .k-chip .k-chip-action[b-7ghoydkpc5] {
        color: #0a66c2;
    }

    .criteria-multiselect .k-chip:hover[b-7ghoydkpc5] {
        background-color: #d1ebff;
    }

/* ===== BLOCKING OVERLAY ===== */
.refresh-blocking-overlay[b-7ghoydkpc5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(3px);
}

.refresh-overlay-content[b-7ghoydkpc5] {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .assignment-settings-drawer[b-7ghoydkpc5] {
        width: 100vw;
    }
}

.inner-scroll[b-7ghoydkpc5] {
    max-height: calc(100vh - 200px); /* Increased scroll area, less white space above footer */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}
/* /UI/Pages/Admin/Components/ClientInvitation.razor.rz.scp.css */
/* Modal backdrop styling */
.modal-backdrop[b-yuf3xk3scp] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal positioning and z-index - PERFECT CENTERING */
.modal.show[b-yuf3xk3scp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9999;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-dialog[b-yuf3xk3scp] {
    position: relative;
    width: 90%;
    max-width: 1000px;
    min-height: 70vh;
    max-height: 85vh;
    margin: 0 !important;
    pointer-events: none;
}

/* Override Bootstrap modal-lg to work with our centering */
.modal-dialog.modal-lg[b-yuf3xk3scp] {
    max-width: 1000px !important;
    width: 90% !important;
    margin: 0 !important;
}

.modal-content[b-yuf3xk3scp] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.25),
                0 1.5rem 4rem rgba(0, 0, 0, 0.2),
                0 1rem 2rem rgba(0, 0, 0, 0.15),
                0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Modal body with scrollable content */
.modal-body[b-yuf3xk3scp] {
    flex: 1;
    overflow-y: auto;
    max-height: calc(85vh - 120px); /* Account for header and footer */
}

/* Enhanced styling */
.modal-header[b-yuf3xk3scp] {
    border-bottom: 2px solid #f0f0f0;
    padding: 1rem 1.5rem;
    flex-shrink: 0;
}

.modal-footer[b-yuf3xk3scp] {
    border-top: 2px solid #f0f0f0;
    padding: 1rem 1.5rem;
    flex-shrink: 0;
}

.card[b-yuf3xk3scp] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.card-header[b-yuf3xk3scp] {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    padding: 0.7rem 1.25rem;
}

.card-body[b-yuf3xk3scp] {
    padding: 1.25rem;
}

/* Table styling with better spacing */
.table[b-yuf3xk3scp] {
    font-size: 13px;
}

.table th[b-yuf3xk3scp] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 0.75rem;
}

.table td[b-yuf3xk3scp] {
    padding: 0.75rem;
    vertical-align: middle;
}

.badge[b-yuf3xk3scp] {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
}

.btn-group-sm .btn[b-yuf3xk3scp] {
    font-size: 11px;
    padding: 4px 12px;
    margin: 0 2px;
}

.spinner-border-sm[b-yuf3xk3scp] {
    width: 1rem;
    height: 1rem;
}

/* Close button styling */
.btn-close[b-yuf3xk3scp] {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='m.235 1.475 4.24 4.24 4.24-4.24 1.06 1.06-4.24 4.24 4.24 4.24-1.06 1.06-4.24-4.24-4.24 4.24-1.06-1.06 4.24-4.24-4.24-4.24 1.06-1.06z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
    padding: 0.375em 0.375em;
    width: 1.5em;
    height: 1.5em;
}

.btn-close:hover[b-yuf3xk3scp] {
    opacity: .75;
}

/* Form styling improvements */
.form-control[b-yuf3xk3scp] {
    padding: 0.75rem;
    font-size: 14px;
}

.btn[b-yuf3xk3scp] {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
}

/* Empty state styling */
.text-center.py-4[b-yuf3xk3scp] {
    padding: 3rem 2rem !important;
}

.text-center.py-4 i[b-yuf3xk3scp] {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .modal-dialog[b-yuf3xk3scp],
    .modal-dialog.modal-lg[b-yuf3xk3scp] {
        width: 95% !important;
        max-width: 95% !important;
    }
}

@media (max-width: 768px) {
    .modal-dialog[b-yuf3xk3scp],
    .modal-dialog.modal-lg[b-yuf3xk3scp] {
        width: 98% !important;
        max-width: 98% !important;
        min-height: 60vh;
        max-height: 90vh;
    }
    
    .modal-body[b-yuf3xk3scp] {
        max-height: calc(90vh - 100px);
    }
    
    .modal-header[b-yuf3xk3scp],
    .modal-footer[b-yuf3xk3scp] {
        padding: 0.75rem 1rem;
    }
    
    .card-body[b-yuf3xk3scp] {
        padding: 1rem;
    }
    
    .table th[b-yuf3xk3scp],
    .table td[b-yuf3xk3scp] {
        padding: 0.5rem;
        font-size: 12px;
    }
    
    .btn-group-sm .btn[b-yuf3xk3scp] {
        font-size: 10px;
        padding: 2px 8px;
    }
}
/* /UI/Pages/Admin/Components/ClientMgmt.razor.rz.scp.css */
/* ===== DRAWER STRUCTURE ===== */
.assignment-settings-overlay[b-x5l5mcs1pw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
}

/* Main drawer - 3 sections: header, content, footer */
.assignment-settings-drawer[b-x5l5mcs1pw] {
    width: 75%;
    height: 100vh;
    background-color: #f6f7f9;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    overflow: hidden; /* Ensure no parent scroll */
}

.assignment-settings-drawer.closing[b-x5l5mcs1pw] {
    transform: translateX(100%);
}

.assignment-settings-drawer.entering[b-x5l5mcs1pw] {
    transform: translateX(100%);
}

.drawer-header[b-x5l5mcs1pw] {
    background-color: var(--color-blue-light) !important;
    color: var(--color-primary-blue) !important;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
    height: 45px;
    flex-shrink: 0;
}

.drawer-content[b-x5l5mcs1pw] {
    flex: 1;
    overflow: hidden; /* Prevent parent scroll, only allow inner scroll */
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding:0px 30px;
}

/* --- Use the .inner-scroll from CustomCriteriaTab.razor.css --- */
/*
.inner-scroll {
    max-height: calc(100vh - 200px); 
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}
*/
/* --- Updated for correct scroll area with fixed header/footer --- */
.inner-scroll[b-x5l5mcs1pw] {
    max-height: calc(100vh - 45px - 56px); /* header 45px + footer 56px, adjust if needed */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

/* --- Fixed footer from AssignmentSettings.razor.css --- */
.drawer-footer[b-x5l5mcs1pw] {
    flex-shrink: 0;
    background-color: #ffffff;
    padding: 5px 30px;
    border-top: 3px solid #D9D9D9;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    z-index: 5;
    height: 56px;
    display: flex;
    align-items: center;
}

/* Remove old sticky-footer and sticky-bar for this page */
.sticky-bar[b-x5l5mcs1pw], .sticky-footer[b-x5l5mcs1pw] {
    display: none !important;
}

/* Blocking overlay styles */
.refresh-blocking-overlay[b-x5l5mcs1pw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(3px);
}

    .refresh-overlay-content[b-x5l5mcs1pw] {
        text-align: center;
        padding: 2rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

/* Ensure proper spacing and styling for locked cells */
[b-x5l5mcs1pw] .k-grid td .locked-row {
    background-color: #ffebee !important;
    color: #d32f2f !important;
    font-weight: 500 !important;
    width: 100%;
    height: 100%;
}

/* Parent cell styling when locked */
[b-x5l5mcs1pw] .k-grid td:has(.locked-row) {
    background-color: #ffebee !important;
    padding: 0 !important;
}

/* Alternative fallback approach */
[b-x5l5mcs1pw] .k-grid tbody tr:has(.locked-row) {
    background-color: #ffebee !important;
}

[b-x5l5mcs1pw] .k-grid tbody tr:has(.locked-row) td {
    background-color: inherit !important;
}

/* Lock button specific styling */
[b-x5l5mcs1pw] .k-button.k-button-error {
    background-color: #f44336 !important;
    border-color: #f44336 !important;
    color: white !important;
}

[b-x5l5mcs1pw] .k-button.k-button-warning {
    background-color: #ff9800 !important;
    border-color: #ff9800 !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .assignment-settings-drawer[b-x5l5mcs1pw] {
        width: 90vw;
    }

    .client-management-section[b-x5l5mcs1pw] {
        padding: 0px 15px;
    }
}

.column-header[b-x5l5mcs1pw] {
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 13px;
    color: white;
}

.sub-column-header[b-x5l5mcs1pw] {
    font-family: 'Inter', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 9px;
    color: #878A8E;
}

.inter-regular-11[b-x5l5mcs1pw] {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 11px;
    color: #000000; /* Black */
}

.name-label[b-x5l5mcs1pw] {
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 13px;
    color: #000000; /* Black */
}

.disabled-img[b-x5l5mcs1pw] {
    pointer-events: none;
    opacity: 0.6; /* optional, to show visually disabled */
}

/* Drawer takes full viewport height and uses flexbox for layout */
.assignment-settings-drawer[b-x5l5mcs1pw] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden !important;
}

/* Header stays fixed at top */
.drawer-header[b-x5l5mcs1pw] {
    flex-shrink: 0;
}

/* Content area fills remaining space */
.drawer-content[b-x5l5mcs1pw] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.client-mgmt-component.k-grid td[b-x5l5mcs1pw], .k-grid .k-table-td[b-x5l5mcs1pw] {
    border: none !important;
}

.client-mgmt-component .k-grid .k-table-th[b-x5l5mcs1pw] {
    border-right: 2px solid white; 
}

.client-mgmt-component .k-grid .k-table-row.k-table-alt-row[b-x5l5mcs1pw] {
    background-color: white !important;
}

.client-mgmt-component .k-detail-row .k-grid .k-table-row.k-table-alt-row[b-x5l5mcs1pw] {
    background-color: #E9F0F8 !important;
}

.custom-icons .k-hierarchy-cell .k-button .k-svg-icon[b-x5l5mcs1pw],
.custom-icons .k-hierarchy-cell .k-svg-icon.k-svg-i-plus[b-x5l5mcs1pw],
.custom-icons .k-hierarchy-cell .k-svg-icon.k-svg-i-plus svg[b-x5l5mcs1pw] {
    width: 24px !important;
    height: 24px !important;
}

.custom-icons .k-hierarchy-cell .k-svg-icon.k-svg-i-plus svg path[b-x5l5mcs1pw] {
    d: path("M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m32 256v96h-64v-96h-96v-64h96v-96h64v96h96v64z") !important;
    fill: #0252C9 !important;
}

.custom-icons .k-hierarchy-cell .k-button .k-svg-icon[b-x5l5mcs1pw],
.custom-icons .k-hierarchy-cell .k-svg-icon.k-svg-i-minus[b-x5l5mcs1pw],
.custom-icons .k-hierarchy-cell .k-svg-i-minus svg[b-x5l5mcs1pw] {
    width: 24px !important;
    height: 24px !important;
}

.custom-icons .k-hierarchy-cell .k-svg-icon.k-svg-i-minus svg path[b-x5l5mcs1pw] {
    d: path("M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32M128 288v-64h256v64z") !important;
    fill: #0252C9 !important;
}

.client-mgmt-component .k-detail-row .k-grid .k-table-thead .k-table-row[b-x5l5mcs1pw] {
    height: 20px !important;
}

.client-mgmt-component .locked-client-row[b-x5l5mcs1pw] {
    background-color: #ffebee !important;
    color: #d32f2f !important;
}

.client-mgmt-component .name-label.locked-client-row[b-x5l5mcs1pw],
.client-mgmt-component .inter-regular-11.locked-client-row[b-x5l5mcs1pw],
.client-mgmt-component .action-buttons-telerik.locked-client-row[b-x5l5mcs1pw] {
    background-color: #ffebee !important;
    color: #d32f2f !important;
}

.client-mgmt-component .k-grid .k-table-td:has(.locked-client-row)[b-x5l5mcs1pw] {
    background-color: #ffebee !important;
}

.client-mgmt-component .k-grid .k-table-row.k-master-row > .k-table-td[b-x5l5mcs1pw] {
    border-bottom: 2px solid #AAC5E5 !important;
}

.client-mgmt-component .k-grid .k-table-row.k-master-row.k-expanded > .k-table-td[b-x5l5mcs1pw] {
    border-bottom: none !important;
}

.client-mgmt-component .k-grid
.k-master-row.k-expanded + .k-detail-row
.k-grid .k-table-row > .k-table-td[b-x5l5mcs1pw] {
    border-top: none !important;
    border-bottom: none !important;
}

.client-mgmt-component .k-grid
.k-master-row.k-expanded + .k-detail-row
.k-grid .k-table-row:last-child > .k-table-td[b-x5l5mcs1pw] {
    border-bottom: 2px solid #AAC5E5 !important;
}

.client-mgmt-component .k-grid .k-table-row[b-x5l5mcs1pw] {
    height: 28px !important;
}
/* /UI/Pages/Admin/Components/CustomCriteriaTab.razor.rz.scp.css */
.custom-criteria-content[b-vampm96oqa] {
    padding: 0;
}

.criteria-header h4[b-vampm96oqa] {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.criteria-description[b-vampm96oqa] {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.custom-columns-list[b-vampm96oqa] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Grid layout for custom column items */
.custom-column-grid[b-vampm96oqa] {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 140px;
    align-items: start;
}

/* Left section - Activate */
.activate-section[b-vampm96oqa] {
    display: flex;
    flex-direction: column;
}

/* Right section - Criteria textarea */
.criteria-section[b-vampm96oqa] {
    display: flex;
    flex-direction: column;
}

.activate-label[b-vampm96oqa] {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.criteria-field-label[b-vampm96oqa] {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

    .criteria-field-label.disabled-label[b-vampm96oqa] {
        color: #999;
    }

.criteria-textarea[b-vampm96oqa] {
    width: 100%;
    font-size: 12px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 80px;
    transition: all 0.2s ease;
}

    .criteria-textarea:focus[b-vampm96oqa] {
        border-color: #0a66c2;
        outline: none;
        box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.1);
    }

    .criteria-textarea.disabled-textarea[b-vampm96oqa] {
        background-color: #f8f9fa;
        border-color: #e9ecef;
        color: #6c757d;
        cursor: not-allowed;
    }

        .criteria-textarea.disabled-textarea[b-vampm96oqa]::placeholder {
            color: #adb5bd;
        }

.character-count[b-vampm96oqa] {
    text-align: right;
    font-size: 8px;
    color: #999;
    transition: color 0.2s ease;
}

    .character-count.disabled-text[b-vampm96oqa] {
        color: #ccc;
    }

.disabled-text[b-vampm96oqa] {
    color: #ccc;
}

.custom-bar[b-vampm96oqa] {
    display:block;
    flex-shrink:0;
    width: 100%;
    max-width: 100%;
    height: 3px;
}

.inner-scroll[b-vampm96oqa] {
    max-height: calc(100vh - 200px); /* Increased scroll area, less white space above footer */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.sticky-bar[b-vampm96oqa] {
    position: sticky;
    bottom: 72px; /* footer height */
    z-index: 9;
    background-color: #e5e7eb;
}
/* /UI/Pages/Admin/LandingPage.razor.rz.scp.css */
.assignment_bg[b-5xkixtw5wq] {
    background-image: url('/images/active_ass_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: calc(100vh - 23.2rem);
    display: flex;
    flex-direction: column; /* Stack bar above card */
    align-items: center; /* Center horizontally */
    justify-content: flex-start; /* ✅ Move to top instead of center */
    position: relative;
    z-index: 1;
    padding: 1.3rem 1rem;
}

.custom-tabs-bar[b-5xkixtw5wq] {
    width: 100%;
    height: 12px;
}

.overlay-card[b-5xkixtw5wq] {
    border-radius: 0; 
    width: 100%;
}

.status-filter-toggle[b-5xkixtw5wq], .mode-toggle[b-5xkixtw5wq] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mode-toggle[b-5xkixtw5wq] {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.filter-label[b-5xkixtw5wq] {
    font-family: 'Georgia', serif; /* Georgia Bold */
    font-weight: bold; /* Bold */
    font-size: 12px;
    color: #C0D4EC;
    margin-right: 8px;
}

.toggle-label[b-5xkixtw5wq] {
    font-family: 'Inter', sans-serif;
    font-weight: bold; /* Bold */
    font-size: 11px;
    cursor: pointer;
    transition: color 0.2s;
}

    /* Selected state */
    .toggle-label.strong[b-5xkixtw5wq] {
        color: #0C213C;
    }

    /* Unselected state */
    .toggle-label.muted[b-5xkixtw5wq] {
        color: #9E9E9E;
    }



.items-info[b-5xkixtw5wq] {
    display: flex;
    align-items: center;
}

.toggle-label-mode[b-5xkixtw5wq] {
    font-family: 'Inter', sans-serif;
    font-weight: bold; /* Bold */
    font-size: 11px;
    cursor: pointer;
    transition: color 0.2s;
}

    /* Selected state */
    .toggle-label-mode.strong[b-5xkixtw5wq] {
        color: #0A65CC;
    }

    /* Unselected state */
    .toggle-label-mode.muted[b-5xkixtw5wq] {
        color: #9E9E9E;
    }

.user-details h2[b-5xkixtw5wq] {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.member-since[b-5xkixtw5wq] {
    font-size: 13px;
    color: #666;
}

.notification-badge[b-5xkixtw5wq] {
    position: absolute;
    top: 25px;
    right: 30px;
}

.welcome-text[b-5xkixtw5wq] {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* Section Header */

.view-controls[b-5xkixtw5wq] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
}


.assignment-link-btn[b-5xkixtw5wq] {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: #0a66c2 !important;
    font-weight: 500;
    text-align: left !important;
}

.assignment-link-btn:hover[b-5xkixtw5wq] {
    text-decoration: underline;
}

.action-buttons-telerik[b-5xkixtw5wq] {
    display: flex;
    gap: 6px;
}

/* Pagination area */
.k-pager[b-5xkixtw5wq] {
    background-color: #fff !important;
    border-top: 1px solid #eee !important;
}

/* Switch color */
.k-switch[b-5xkixtw5wq] {
    --kendo-color-primary: #0a66c2;
}

/* Loading states */
.loading-container[b-5xkixtw5wq] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.loading-spinner[b-5xkixtw5wq] {
    text-align: center;
}

.spinner[b-5xkixtw5wq] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0a66c2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-5xkixtw5wq 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin-b-5xkixtw5wq {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p[b-5xkixtw5wq] {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.error-container[b-5xkixtw5wq] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.error-message[b-5xkixtw5wq] {
    text-align: center;
    max-width: 400px;
}

.error-message h4[b-5xkixtw5wq] {
    color: #d32f2f;
    margin: 0 0 10px 0;
}

.error-message p[b-5xkixtw5wq] {
    color: #666;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.section-header[b-5xkixtw5wq] {
    display: flex;
    justify-content: space-between; /* spread left & right */
    align-items: center;
    padding: 5px 0;
}

.left-side[b-5xkixtw5wq] {
    font-size: 13px;
    color: #777;
}

.right-side[b-5xkixtw5wq] {
    display: flex;
    align-items: center;
}


.column-header[b-5xkixtw5wq] {
    font-family: 'Inter', sans-serif;
    font-weight: normal; 
    font-size: 11px;
    color: white;
}

.vertical-divider[b-5xkixtw5wq] {
    width: 3px;
    height: 30px;
    flex-shrink: 0;
}



/* /UI/Pages/CandidateMtx/AssignmentDetail.razor.rz.scp.css */
.assignment-settings-overlay[b-zgq7sm2tsr] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
}

/* Blocking overlay styles for save operation */
.refresh-blocking-overlay[b-zgq7sm2tsr] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(3px);
}

.refresh-overlay-content[b-zgq7sm2tsr] {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.assignment-settings-drawer[b-zgq7sm2tsr] {
  width: 90%;
    height: 100vh;
 background-color: #f6f7f9;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease-out;
}

@@keyframes slideInRight {
    from[b-zgq7sm2tsr] {
        transform: translateX(100%);
    }

    to[b-zgq7sm2tsr] {
   transform: translateX(0);
    }
}

.drawer-header[b-zgq7sm2tsr] {
    background-color: var(--color-blue-light) !important;
    color: var(--color-primary-blue) !important;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.drawer-content[b-zgq7sm2tsr] {
 flex: 1;
    overflow-y: auto;
    background-color: white;
}

.custom-bar[b-zgq7sm2tsr] {
    width: 100%;
    max-width: 100%;
    height: 5px;
}

.tab-bar[b-zgq7sm2tsr] {
    width: 100%;
    max-width: 100%;
    height: 20px;
}

/* Vertical Divider */
.vertical-divider[b-zgq7sm2tsr] {
    width: 4px;
    height: 70px;
    align-self: center;
    flex-shrink: 0;
}

.assignment-info-section[b-zgq7sm2tsr] {
    background-color: white;
 padding: 20px 30px;
}

.email-btn[b-zgq7sm2tsr] {
    background: none !important;
    border: none !important;
    color: #666 !important;
}


.assignment-meta[b-zgq7sm2tsr] {
    display: flex;
    gap: 30px;
}

.meta-item[b-zgq7sm2tsr] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.meta-label[b-zgq7sm2tsr] {
    color: #666;
    font-weight: 500;
}

.meta-value[b-zgq7sm2tsr] {
    color: #333;
    font-weight: 600;
}

.criteria-section h4[b-zgq7sm2tsr] {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.criteria-item[b-zgq7sm2tsr] {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.criteria-icon[b-zgq7sm2tsr] {
    margin-top: 5px;
}

.criteria-icon-btn[b-zgq7sm2tsr] {
background-color: #e8f4fd !important;
    border: none !important;
    color: #0a66c2 !important;
    width: 40px;
  height: 40px;
    border-radius: 50% !important;
}

.criteria-content[b-zgq7sm2tsr] {
    flex: 1;
}

.criteria-header[b-zgq7sm2tsr] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.criteria-label[b-zgq7sm2tsr] {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.criteria-input[b-zgq7sm2tsr] {
    width: 100%;
    max-width: 300px;
}

/* MultiSelect specific styles */
.criteria-multiselect[b-zgq7sm2tsr] {
    width: 100%;
    max-width: 500px;
    margin-bottom: 5px;
}

    .criteria-multiselect .k-multiselect-wrap[b-zgq7sm2tsr] {
        min-height: 40px;
        border-radius: 4px;
        border: 1px solid #d4d4d8;
        background-color: white;
    }

      .criteria-multiselect .k-multiselect-wrap:focus-within[b-zgq7sm2tsr] {
     border-color: #526c8f;
            box-shadow: 0 0 0 2px rgba(82, 108, 143, 0.1);
        }

    .criteria-multiselect .k-chip[b-zgq7sm2tsr] {
    background-color: #e8f4fd;
        color: #0a66c2;
      border: 1px solid #b3d9ff;
        border-radius: 16px;
        font-size: 12px;
      margin: 2px;
        padding: 4px 8px;
  }

  .criteria-multiselect .k-chip .k-chip-action[b-zgq7sm2tsr] {
            color: #0a66c2;
        }

    .criteria-multiselect .k-chip:hover[b-zgq7sm2tsr] {
    background-color: #d1ebff;
        }

/* Loading indicator styles */
.loading-indicator[b-zgq7sm2tsr] {
display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 0;
    font-size: 12px;
 color: #666;
}

    .loading-indicator .k-loader[b-zgq7sm2tsr] {
        width: 16px;
   height: 16px;
    }

.revenue-inputs[b-zgq7sm2tsr] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.revenue-input[b-zgq7sm2tsr] {
    width: 120px;
}

.range-separator[b-zgq7sm2tsr] {
    font-size: 16px;
    font-weight: 600;
color: #666;
}

.industry-tags[b-zgq7sm2tsr] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tag[b-zgq7sm2tsr] {
    background-color: #e8f4fd;
 color: #0a66c2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
  display: flex;
    align-items: center;
    gap: 6px;
}

.no-tags-message[b-zgq7sm2tsr] {
    color: #999;
 font-style: italic;
    font-size: 13px;
}

.remove-tag-btn[b-zgq7sm2tsr] {
    background: none !important;
    border: none !important;
    color: #0a66c2 !important;
    font-size: 10px;
    padding: 0 !important;
    width: 16px;
    height: 16px;
}

.drawer-footer[b-zgq7sm2tsr] {
    background-color: white;
    padding: 20px 30px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.cancel-btn[b-zgq7sm2tsr] {
    padding: 10px 20px;
    font-size: 13px;
font-weight: 600;
    text-transform: uppercase;
}

.save-btn[b-zgq7sm2tsr] {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}


/* Responsive adjustments */
@@media (max-width: 768px) {
    .assignment-settings-drawer[b-zgq7sm2tsr] {
        width: 100vw;
    }

    .criteria-multiselect[b-zgq7sm2tsr] {
        max-width: 100%;
    }

    .revenue-inputs[b-zgq7sm2tsr] {
      flex-direction: column;
   align-items: flex-start;
      gap: 8px;
  }

    .revenue-input[b-zgq7sm2tsr] {
  width: 100%;
        max-width: 200px;
    }

    .tab-footer-actions[b-zgq7sm2tsr] {
        flex-direction: column;
        align-items: stretch;
    }

        .tab-footer-actions .save-btn[b-zgq7sm2tsr] {
    width: 100%;
        }
}
/* /UI/Pages/CandidateMtx/AssignmentSummary.razor.rz.scp.css */
.vertical-divider[b-5m7p25b7p2] {
    width: 1px;
    height: 12px;
    flex-shrink: 0;
}

.bw-col-vertical-divider[b-5m7p25b7p2] {
    width: 1px;
    height: 100%;
    flex-shrink: 0;
    align-self: stretch;
}

.custom-bar[b-5m7p25b7p2] {
    display:block;
    width: 100%;
    max-width: 100%;
    height: 3px;
    flex-shrink:0;
}

.status-bar-item[b-5m7p25b7p2] {
    margin-bottom: 0.5rem;
}
/* /UI/Pages/CandidateMtx/CandidateMtxPage.razor.rz.scp.css */
/* Layout and Navigation Styles */
.custom-tabs-bar[b-ejai5i2oxn] {
    display: flex;
    height: 4px;
}

.custom-status-bar[b-ejai5i2oxn] {
    display: flex;
    height: 5px;
}

/* Vertical Divider */
.vertical-divider[b-ejai5i2oxn] {
    width: 4px;
    height: 30px;
    align-self: center;
    flex-shrink: 0;
    margin-left:18px;
    margin-right:18px;
}

/* Vertical Divider .experience-item
.candidate-divider {
    width: 4px;
    height: 30px;
    align-self: center;
    flex-shrink: 0;
    margin-right: 15px;
    color: #E9F0F8;
    background-color: #E9F0F8;
}

/* Vertical Divider */
.vertical-divider-publish-button[b-ejai5i2oxn] {
    width: 4px;
    height: 35px;
    align-self: center;
    flex-shrink: 0;
}

/* Action Bar Styles */
.action-bar[b-ejai5i2oxn] {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 4px 8px;
    position: sticky;
    top: 0;
    background: #e0f0ff;
    z-index: 5;
    align-items: center;
    height: 25px;
    flex-shrink: 0;
    border-bottom: 1px solid #d1d5db;
}

.action-bar-left[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.action-bar-right[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Profile Section Styles */
.profile-section[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 0px 10px;
    height: 105px !important;
    min-height: 105px !important;
    max-height: 105px !important;
    overflow: hidden;
    transition: all 0.2s ease;
}

    .profile-section:hover[b-ejai5i2oxn] {
        overflow-y: auto;
    }


.profile-section[b-ejai5i2oxn]::-webkit-scrollbar {
    width: 6px;
}

.profile-section[b-ejai5i2oxn]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.profile-section[b-ejai5i2oxn]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.profile-section[b-ejai5i2oxn]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.profile-section[b-ejai5i2oxn] {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.avatar-img[b-ejai5i2oxn] {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.candidate-info[b-ejai5i2oxn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.profile-name[b-ejai5i2oxn] {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Semi-bold */
    font-size: 14px;
    color: #095083;
    letter-spacing: 0px;
    cursor:pointer;
}

.profile-title-company[b-ejai5i2oxn] {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 10px;
    color: #5F7582;
    letter-spacing: 0px;
}


/* Status Bar Styles */
.status-bar-container[b-ejai5i2oxn] {
    margin-top: 0.2rem;
}

.status-header[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
    padding: 4px 0px;
}

.candidates-info[b-ejai5i2oxn] {
    display: flex;
    flex-direction: column;
}

.candidates-title[b-ejai5i2oxn] {
    font-family: 'Inter', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 8px;
    line-height: 16px;
    letter-spacing: 0.02em; /* 2% letter spacing */
    text-transform: uppercase;
    color: #5F7582;
}

.as-of-info[b-ejai5i2oxn] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.as-of-label[b-ejai5i2oxn] {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 8px;
    color: var(--color-gray-medium);
}

.as-of-date[b-ejai5i2oxn] {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 8px;
    color: var(--color-dark-gray);
}

.status-sections[b-ejai5i2oxn] {
    display: flex;
    gap: 40px;
    align-items: center;
}

.status-section[b-ejai5i2oxn] {
    display: flex;
    flex-direction: column;
    
}

.section-title[b-ejai5i2oxn] {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 8px;
    color: #5F7582;
    letter-spacing: 0.4px;
}

.status-items[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
}

.badge-number[b-ejai5i2oxn] {
    border-radius: 50%;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 11px;
}

.badge-text[b-ejai5i2oxn] {
    font-size: 7px;
    font-weight: 600;
    margin-left:7px;
}

.experience-items[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
}

.experience-item[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
}

.experience-color[b-ejai5i2oxn] {
    width: 21px;
    height: 21px;
    border-radius: 2px;
}

.experience-text[b-ejai5i2oxn] {
    font-family: var(--font-inter);
    font-weight: 300;
    font-size: 7px;
    color: var(--color-dark-gray);
    margin-left:7px;
}

.no-data[b-ejai5i2oxn] {
    color: var(--color-gray-medium) !important;
}

.manage-matrix-section[b-ejai5i2oxn] {
    margin-left: auto;
}

/* Color Picker Styles */
.color-square[b-ejai5i2oxn] {
    width: 14px;
    height: 12px;
    flex-shrink: 0;
}

.color-label[b-ejai5i2oxn] {
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
}

.color-dropdown-telerik[b-ejai5i2oxn] {
    border: none !important;
    border-radius: 0 !important;
}

.color-option-telerik[b-ejai5i2oxn] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', var(--font-inter), sans-serif;
    font-weight: 400; /* Inter Regular */
    font-size: 8px;
    letter-spacing: 0.2px;
}

.color-value-template[b-ejai5i2oxn] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

/* Read-only Content Styles */
.readonly-content-container[b-ejai5i2oxn] {
    width: 100%;
    height: 105px !important;
    min-height: 105px !important;
    max-height: 105px !important;
    padding: 0px 8px;
    font-family: var(--font-inter);
    font-size: 11px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.readonly-content-container:hover[b-ejai5i2oxn] {
    overflow-y: auto;
}

.readonly-content-container[b-ejai5i2oxn]::-webkit-scrollbar {
    width: 6px;
}

.readonly-content-container[b-ejai5i2oxn]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.readonly-content-container[b-ejai5i2oxn]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.readonly-content-container[b-ejai5i2oxn]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.readonly-content-container[b-ejai5i2oxn] {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.plain-text-display[b-ejai5i2oxn] {
    font-family: var(--font-inter);
    font-size: 10px;
    line-height: 1.4;
    color: var(--color-dark-gray);
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: transparent;
    border: none;
}

/* Utility Classes */
.cursor-pointer[b-ejai5i2oxn] {
    cursor: pointer !important;
}

/* Refresh Loader Overlay */
.refresh-loader-overlay[b-ejai5i2oxn] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.assignment-name[b-ejai5i2oxn] {
    font-family: "Georgia", serif;
    font-weight: 700; /* Bold */
    font-size: 20px;
}

.candidate-header-title[b-ejai5i2oxn] {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Semi-Bold */
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.02em; /* 2% letter spacing */
    vertical-align: middle;
    text-wrap:auto;
    width:180px;
}
.location[b-ejai5i2oxn] {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Semi-bold */
    font-size: 10px;
    color: #5F7582;
}

/* Text styling for hidden candidate rows - gray out profile text */
.candidate-matrix-page .k-grid .k-table-row.row-hidden .text-hidden[b-ejai5i2oxn] {
    color: #888888 !important;
}

/* Ensure profile name link is also grayed when hidden */
.candidate-matrix-page .k-grid .k-table-row.row-hidden .profile-name.text-hidden[b-ejai5i2oxn] {
    color: #888888 !important;
}

/* Gray out matrix cell content when row is hidden */
.candidate-matrix-page .k-grid .k-table-row.row-hidden .readonly-content-container.text-hidden .plain-text-display[b-ejai5i2oxn] {
    color: #888888 !important;
}
/* /UI/Pages/CandidateMtx/Components/CandidateDetails.razor.rz.scp.css */
/* ===== DRAWER STRUCTURE ===== */
.assignment-settings-overlay[b-4vjjctbzkz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
}

/* Main drawer - 3 sections: header, content, footer */
.assignment-settings-drawer[b-4vjjctbzkz] {
    width: 75%;
    height: 100vh;
    background-color: #f6f7f9;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    overflow: hidden; /* Ensure no parent scroll */
}

    .assignment-settings-drawer.closing[b-4vjjctbzkz] {
        transform: translateX(100%);
    }

    .assignment-settings-drawer.entering[b-4vjjctbzkz] {
        transform: translateX(100%);
    }

/* ===== FIXED HEADER (Top) ===== */
.drawer-header[b-4vjjctbzkz] {
    background-color: var(--color-blue-light) !important;
    color: var(--color-primary-blue) !important;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
    height: 45px;
    flex-shrink: 0;
}

/* ===== SCROLLABLE CONTENT (Middle) ===== */
.drawer-content[b-4vjjctbzkz] {
    flex: 1;
    overflow: hidden; /* Prevent parent scroll, only allow inner scroll */
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.tab-bar[b-4vjjctbzkz] {
    display: block;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    height: 3px;
}

/* Vertical Divider */
.vertical-divider[b-4vjjctbzkz] {
    width: 4px;
    height: 70px;
    align-self: center;
    flex-shrink: 0;
}

.assignment-info-section[b-4vjjctbzkz] {
    background-color: white;
    padding: 10px 30px 0 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    min-height: 0;
}

/* Fixed assignment info at top */
.assignment-info-header[b-4vjjctbzkz] {
    flex-shrink: 0;
}

/* TabStrip fills remaining space and scrolls */
.candidate-tabstrip[b-4vjjctbzkz] {
    flex-1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

    .candidate-tabstrip .k-tabstrip-items-wrapper[b-4vjjctbzkz] {
        flex-shrink: 0;
    }

    .candidate-tabstrip .k-tabstrip-content[b-4vjjctbzkz] {
        flex: 1;
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
        padding: 1rem;
    }







/* /UI/Pages/ComponentsShared/Footer.razor.rz.scp.css */
.footer-wrapper[b-yclppzin95] {
    background-color: #485261;
    color: white;
    padding: 20px 0;
    margin:0px;
}

/* Logo and Divider Section */
.logo-divider-section[b-yclppzin95] {
    max-width: 1200px;
    margin-left: 3%;
    margin-bottom: 20px;
}

.logo-container[b-yclppzin95] {
    margin-bottom: 10px;
}

.footer-logo[b-yclppzin95] {
    height: 60px;
    width: auto;
    display: block;
}

.full-width-divider[b-yclppzin95] {
    border: none;
    border-top: 1px solid white;
    width: 100%;
    margin: 0;
    opacity: 0.8;
}

/* Content Section */
.content-section[b-yclppzin95] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: 3%;
    min-height: 120px;
}

/* Left Side - Contact Info */
.contact-info-left[b-yclppzin95] {
    flex: 1;
}

.copyright-section small[b-yclppzin95] {
    font-size: 12px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .logo-divider-section[b-yclppzin95],
    .content-section[b-yclppzin95] {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .logo-divider-section[b-yclppzin95],
    .content-section[b-yclppzin95] {
        padding: 0 20px;
    }

    .content-section[b-yclppzin95] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .logo-divider-section[b-yclppzin95],
    .content-section[b-yclppzin95] {
        padding: 0 15px;
    }

    .footer-logo[b-yclppzin95] {
        height: 45px;
    }

    .phone-text[b-yclppzin95] {
        font-size: 13px;
    }

    .copyright-section small[b-yclppzin95] {
        font-size: 11px;
    }
}
/* /UI/Pages/ComponentsShared/SubNavbar/AdminCandMtxSubNavBar.razor.rz.scp.css */
.nav-links[b-9iiytq2nqc] {
    display: flex;
    margin: 0 auto;
}

.nav-link-custom[b-9iiytq2nqc] {
    position: relative;
    color: #0C213C;
    text-decoration: none;
    padding: 10.5px 0;
    transition: color 0.3s ease;
    font-weight: bold !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

    /* Container for chevron icons */
    .nav-link-custom .chevron-icons[b-9iiytq2nqc] {
        display: inline-flex;
        align-items: center;
        gap: 0; /* Remove gap between icons */
    }

    /* Individual icon styling */
    .nav-link-custom .chevron-icons[b-9iiytq2nqc]  .k-svg-icon {
        margin: 0;
        padding: 0;
        margin-left: -6px; /* Overlap icons slightly - adjust this value (0 to -10) */
    }

    /* First icon should not have negative margin */
    .nav-link-custom .chevron-icons[b-9iiytq2nqc]  .k-svg-icon:first-child {
        margin-left: 0;
    }

    .nav-link-custom[b-9iiytq2nqc]::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 0%;
        height: 4px;
        background-color: #095083;
        transition: width 0.3s ease;
    }

    /* Hover effect for non-active links */
    .nav-link-custom:not(.active):hover[b-9iiytq2nqc]::after {
        width: 100%;
        background-color: #FFFFFF; /* Gray color for hover */
    }

    /* Active link underline (blue) */
    .nav-link-custom.active[b-9iiytq2nqc]::after {
        width: 100%;
        background-color: #FFFFFF; /* Blue color for active */
    }

    /* Active link text color */
    .nav-link-custom.active[b-9iiytq2nqc] {
        color: #0C213C;
    }

a:hover[b-9iiytq2nqc] {
    color: inherit;
}
/* /UI/Pages/ComponentsShared/SubNavbar/AdminSubNavBar.razor.rz.scp.css */
.nav-links[b-le5bnoulrk] {
    display: flex;
    margin: 0 auto;
}

.nav-link-custom[b-le5bnoulrk] {
    position: relative;
    color: #0C213C;
    text-decoration: none;
    padding: 10.5px 0;
    transition: color 0.3s ease;
    font-weight: bold !important;
    font-size: 14px !important;
}

    .nav-link-custom[b-le5bnoulrk]::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 0%;
        height: 4px;
        background-color: #095083;
        transition: width 0.3s ease;
    }

    /* Hover effect for non-active links */
    .nav-link-custom:not(.active):hover[b-le5bnoulrk]::after {
        width: 100%;
        background-color: #FFFFFF; /* Gray color for hover */
    }

    /* Active link underline (blue) */
    .nav-link-custom.active[b-le5bnoulrk]::after {
        width: 100%;
        background-color: #FFFFFF; /* Blue color for active */
    }

    /* Active link text color */
    .nav-link-custom.active[b-le5bnoulrk] {
        color: #0C213C;
    }

a:hover[b-le5bnoulrk] {
    color: inherit;
}
/* /UI/Pages/ComponentsShared/SubNavbar/ClientCandMtxSubNavBar.razor.rz.scp.css */
.nav-links[b-lc9qpo97bp] {
    display: flex;
    margin: 0 auto;
}

.nav-link-custom[b-lc9qpo97bp] {
    position: relative;
    color: #0C213C;
    text-decoration: none;
    padding: 10.5px 0;
    transition: color 0.3s ease;
    font-weight: bold !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

    /* Container for chevron icons */
    .nav-link-custom .chevron-icons[b-lc9qpo97bp] {
        display: inline-flex;
        align-items: center;
        gap: 0; /* Remove gap between icons */
    }

    /* Individual icon styling */
    .nav-link-custom .chevron-icons[b-lc9qpo97bp]  .k-svg-icon {
        margin: 0;
        padding: 0;
        margin-left: -6px; /* Overlap icons slightly - adjust this value (0 to -10) */
    }

    /* First icon should not have negative margin */
    .nav-link-custom .chevron-icons[b-lc9qpo97bp]  .k-svg-icon:first-child {
        margin-left: 0;
    }

    .nav-link-custom[b-lc9qpo97bp]::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 0%;
        height: 4px;
        background-color: #095083;
        transition: width 0.3s ease;
    }

    /* Hover effect for non-active links */
    .nav-link-custom:not(.active):hover[b-lc9qpo97bp]::after {
        width: 100%;
        background-color: #FFFFFF; /* Gray color for hover */
    }

    /* Active link underline (blue) */
    .nav-link-custom.active[b-lc9qpo97bp]::after {
        width: 100%;
        background-color: #FFFFFF; /* Blue color for active */
    }

    /* Active link text color */
    .nav-link-custom.active[b-lc9qpo97bp] {
        color: #0C213C;
    }

a:hover[b-lc9qpo97bp] {
    color: inherit;
}
/* /UI/Pages/ComponentsShared/SubNavbar/ClientSubNavBar.razor.rz.scp.css */
.nav-links[b-nin5o4ml1l] {
    display: flex;
    margin: 0 auto;
}

.nav-link-custom[b-nin5o4ml1l] {
    position: relative;
    color: #0C213C;
    text-decoration: none;
    padding: 10.5px 0;
    transition: color 0.3s ease;
    font-weight: bold !important;
    font-size: 14px !important;
}

    .nav-link-custom[b-nin5o4ml1l]::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 0%;
        height: 4px;
        background-color: #095083;
        transition: width 0.3s ease;
    }

    /* Hover effect for non-active links */
    .nav-link-custom:not(.active):hover[b-nin5o4ml1l]::after {
        width: 100%;
        background-color: #FFFFFF; /* Gray color for hover */
    }

    /* Active link underline (blue) */
    .nav-link-custom.active[b-nin5o4ml1l]::after {
        width: 100%;
        background-color: #FFFFFF; /* Blue color for active */
    }

    /* Active link text color */
    .nav-link-custom.active[b-nin5o4ml1l] {
        color: #0C213C;
    }

a:hover[b-nin5o4ml1l] {
    color: inherit;
}
/* /UI/Pages/Home/AssignmentList.razor.rz.scp.css */
.bespoke_bg[b-k2zoemoe99] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.assignment_bg[b-k2zoemoe99] {
    background-image: url('/images/active_ass_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: calc(100vh - 25rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    padding: 0; /* Remove padding */
}

.custom-tabs-bar[b-k2zoemoe99] {
    width: 100%;
    max-width: 81.25rem; /* 1300px */
    height: 0.625rem; /* 10px */
    position: absolute; /* Changed from fixed to absolute */
    top: -12.2rem; /* Positioned slightly above the card to create the blue tab effect */
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 19;
}

.overlay-card[b-k2zoemoe99] {
    border-radius: 0;
    max-width: 81.25rem; /* 1300px */
    width: 100%;
    position: absolute; /* Changed from fixed to absolute */
    top: -11.6rem; /* Adjusted to align with red line position */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Perfect horizontal centering */
    z-index: 20; /* Above hero images */
}

/* Hero section overlay images - responsive positioning aligned with card */
.hero-overlay[b-k2zoemoe99] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the container */
    padding: 0;
}

.hero-content-wrapper[b-k2zoemoe99] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 81.25rem; /* Same as overlay-card max-width */
    margin: 0 1rem; /* Same as overlay-card margin */
    transform: translateY(-10%);
}

.universe-unicorn-container[b-k2zoemoe99] {
    flex: 0 0 auto;
    /* Align with card left edge */
}

.universe-unicorn-container img[b-k2zoemoe99] {
    width: clamp(10rem, 18vw, 13rem); /* Slightly smaller to stay within bounds */
    height: auto;
}

.logo-container[b-k2zoemoe99] {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Remove individual transform, handled by wrapper */
}

.logo-container img[b-k2zoemoe99] {
    width: clamp(2.5rem, 5vw, 4rem); /* Slightly smaller to prevent overflow */
    height: auto;
}

.status-filter-toggle[b-k2zoemoe99], .mode-toggle[b-k2zoemoe99] {
    display: flex;
    align-items: center;
    gap: 0.9375rem; /* 15px */
}

.mode-toggle[b-k2zoemoe99] {
    margin-left: 1.25rem; /* 20px */
    padding-left: 1.25rem; /* 20px */
    border-left: 0.0625rem solid #ddd; /* 1px */
}

.filter-label[b-k2zoemoe99] {
    font-weight: 600;
    color: #666;
    font-size: clamp(0.7rem, 1.2vw, 0.75rem); /* Responsive font size */
    letter-spacing: 0.03125rem; /* 0.5px */
}

.toggle-label[b-k2zoemoe99] {
    font-size: clamp(0.75rem, 1.3vw, 0.8125rem); /* Responsive font size */
    transition: all 0.2s ease;
    margin: 0 0.5rem; /* 8px */
}

.items-info[b-k2zoemoe99] {
    display: flex;
    align-items: center;
}

.toggle-label.muted[b-k2zoemoe99] {
    color: #999;
    font-weight: 400;
}

.toggle-label.strong[b-k2zoemoe99] {
    color: #333;
    font-weight: 600;
}

.mode-toggle .toggle-label.strong[b-k2zoemoe99] {
    color: #0a66c2;
}

.user-details h2[b-k2zoemoe99] {
    margin: 0;
    font-size: clamp(1.25rem, 2.2vw, 1.375rem); /* Responsive font size */
    font-weight: 600;
    color: #333;
}

.member-since[b-k2zoemoe99] {
    font-size: clamp(0.75rem, 1.3vw, 0.8125rem); /* Responsive font size */
    color: #666;
}

.notification-badge[b-k2zoemoe99] {
    position: absolute;
    top: 1.5625rem; /* 25px */
    right: 1.875rem; /* 30px */
}

.welcome-text[b-k2zoemoe99] {
    font-size: clamp(0.75rem, 1.3vw, 0.8125rem); /* Responsive font size */
    color: #555;
    margin-top: 0.625rem; /* 10px */
    line-height: 1.5;
}

.view-controls[b-k2zoemoe99] {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* 8px */
    font-size: clamp(0.65rem, 1.1vw, 0.6875rem); /* Responsive font size */
    text-transform: uppercase;
    color: #666;
}

.assignment-link-btn[b-k2zoemoe99] {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: #0a66c2 !important;
    font-weight: 500;
    text-align: left !important;
}

.assignment-link-btn:hover[b-k2zoemoe99] {
    text-decoration: underline;
}

.action-buttons-telerik[b-k2zoemoe99] {
    display: flex;
    gap: 0.375rem; /* 6px */
}

.action-buttons-telerik img[b-k2zoemoe99] {
    width: clamp(1rem, 2vw, 1.5rem); /* Responsive icon size */
    height: auto;
}

/* Pagination area */
.k-pager[b-k2zoemoe99] {
    background-color: #fff !important;
    border-top: 0.0625rem solid #eee !important; /* 1px */
}

/* Switch color */
.k-switch[b-k2zoemoe99] {
    --kendo-color-primary: #0a66c2;
}

/* Loading states */
.loading-container[b-k2zoemoe99] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 37.5rem; /* 600px */
    background-color: #fff;
    border-radius: 0.5rem; /* 8px */
    border: 0.0625rem solid #ddd; /* 1px */
}

.loading-spinner[b-k2zoemoe99] {
    text-align: center;
}

.spinner[b-k2zoemoe99] {
    border: 0.25rem solid #f3f3f3; /* 4px */
    border-top: 0.25rem solid #0a66c2; /* 4px */
    border-radius: 50%;
    width: clamp(2rem, 4vw, 2.5rem); /* Responsive spinner size */
    height: clamp(2rem, 4vw, 2.5rem);
    animation: spin-b-k2zoemoe99 1s linear infinite;
    margin: 0 auto 0.9375rem; /* 15px */
}

@keyframes spin-b-k2zoemoe99 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p[b-k2zoemoe99] {
    color: #666;
    font-size: clamp(0.8rem, 1.4vw, 0.875rem); /* Responsive font size */
    margin: 0;
}

.error-message[b-k2zoemoe99] {
    text-align: center;
    max-width: 25rem; /* 400px */
    margin: 0 auto;
}

.error-message h4[b-k2zoemoe99] {
    color: #d32f2f;
    margin: 0 0 0.625rem 0; /* 10px */
    font-size: clamp(1rem, 1.8vw, 1.125rem); /* Responsive font size */
}

.error-message p[b-k2zoemoe99] {
    color: #666;
    margin: 0 0 1.25rem 0; /* 20px */
    font-size: clamp(0.8rem, 1.4vw, 0.875rem); /* Responsive font size */
}

.section-header[b-k2zoemoe99] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0; /* 10px */
}

.left-side[b-k2zoemoe99] {
    font-size: clamp(0.75rem, 1.3vw, 0.8125rem); /* Responsive font size */
    color: #777;
}

.right-side[b-k2zoemoe99] {
    display: flex;
    align-items: center;
}

.card-header[b-k2zoemoe99] {
    padding: clamp(0.5rem, 1.5vw, 0.5rem) 0 clamp(0.5rem, 1.5vw, 0.5rem) 0 !important;
}


/* Avatar responsive */
.k-avatar[b-k2zoemoe99] {
    width: clamp(2.5rem, 5vw, 3.125rem) !important; /* Responsive avatar size */
    height: clamp(2.5rem, 5vw, 3.125rem) !important;
}

/* Side logo responsive */
.ms-auto img[b-k2zoemoe99] {
    width: clamp(8rem, 15vw, 12.5rem) !important; /* Responsive side logo */
    height: auto !important;
}

/* Grid responsive adjustments */
.k-grid[b-k2zoemoe99] {
    font-size: clamp(0.75rem, 1.3vw, 0.8125rem); /* Responsive grid text */
}

.k-grid .k-table-row[b-k2zoemoe99] {
    height: clamp(1.5rem, 3vw, 2rem) !important; /* Responsive row height */
}

.column-header[b-k2zoemoe99] {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 11px;
    color: white;
}

/* Media queries for extreme zoom levels */
@media (max-width: 48rem) { /* 768px */
    .hero-content-wrapper[b-k2zoemoe99] {
        flex-direction: column;
        gap: 1rem;
        margin: 0 0.5rem;
        transform: translateY(-5%);
    }
    
    .universe-unicorn-container[b-k2zoemoe99],
    .logo-container[b-k2zoemoe99] {
        justify-content: center;
    }
    
    .overlay-card[b-k2zoemoe99] {
        margin: 0 0.5rem;
    }
}

@media (min-width: 120rem) { /* 1920px */
    .assignment_bg[b-k2zoemoe99] {
        padding: 2rem;
    }
    
    .overlay-card[b-k2zoemoe99] {
        margin: 0 2rem;
    }
    
    .hero-content-wrapper[b-k2zoemoe99] {
        margin: 0 2rem;
    }
}

.vertical-divider[b-k2zoemoe99] {
    width: 3px;
    height: 30px;
    flex-shrink: 0;
}
/* /UI/Pages/Login/Login.razor.rz.scp.css */
/* Top color strip */
.login-top-bg[b-16903ybju9] {
    background-color: #0C213C;
    height: 2.5rem;
}

/* Login background */
.login-background[b-16903ybju9] {
    background-image: url('/images/login_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: calc(100vh - 18.2rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

/* Main content wrapper */
.login-content-wrapper[b-16903ybju9] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    padding: 3rem 4rem;
    gap: 1.5rem; /* Reduced gap between text content and login card */
    position: relative;
    z-index: 2;
}

/* Text content section (logo + heading) */
.text-content[b-16903ybju9] {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column; /* Stack logo above heading text */
    align-items: flex-start;
}

/* Logo section */
.logo-section[b-16903ybju9] {
    margin-bottom: 1rem; /* Space between logo and heading text */
    position: relative;
    z-index: 4;
}

.company-logo[b-16903ybju9] {
    max-width: 200px;
    height: auto;
    width: 100%;
    display: block;
    position: relative;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Heading text - positioned below logo and aligned with logo text */
.heading-text[b-16903ybju9] {
    font-family: Georgia, serif;
    position: relative;
    z-index: 3;
    margin-left: 3.5rem; /* Approximate alignment with "BESPOKE partners" text */
    margin-top: 0;
}

    .heading-text h2[b-16903ybju9] {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 3;
        font-weight: 300;
    }

    .heading-text .tagline[b-16903ybju9] {
        font-size: clamp(0.875rem, 1.5vw, 1.2rem);
        line-height: 1.3;
        position: relative;
        z-index: 3;
    }

/* Login card */
.login-card[b-16903ybju9] {
    background-color: rgba(123, 148, 164, 0.49);
    color: white;
    border-radius: 0.5rem;
    backdrop-filter: blur(6px);
    width: 100%;
    max-width: 450px;
    min-height: 535px;
    position: relative;
    z-index: 2;
}

/* Responsive Design */

/* Large screens (4K and ultra-wide) */
@media (min-width: 1920px) {
    .login-background[b-16903ybju9] {
        padding-top: 3rem;
    }

    .login-content-wrapper[b-16903ybju9] {
        max-width: 1600px;
        padding: 4rem 5rem;
        gap: 2rem;
    }

    .company-logo[b-16903ybju9] {
        max-width: 350px; /* Proportionally scaled from 200px base */
    }

    .heading-text[b-16903ybju9] {
        margin-left: 7.5rem; /* Proportionally scaled from 3.5rem base */
    }

    .login-card[b-16903ybju9] {
        max-width: 500px;
        min-height: 600px;
    }
}

/* Desktop and laptops (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .login-background[b-16903ybju9] {
        padding: 3rem;
        min-height: calc(100vh - 18.1rem);
    }

    .login-content-wrapper[b-16903ybju9] {
        padding: 3rem 4rem;
        gap: 1.5rem;
    }

    .company-logo[b-16903ybju9] {
        max-width: 300px; /* Keep base size */
    }

    .heading-text[b-16903ybju9] {
        margin-left: 6.5rem; /* Keep base margin */
    }
}

/* Medium desktop and laptops */
@media (max-width: 1199px) {
    .login-background[b-16903ybju9] {
        padding: 3rem;
        min-height: calc(100vh - 18.1rem);
    }

    .login-content-wrapper[b-16903ybju9] {
        padding: 2.5rem 3rem;
        gap: 1.2rem;
    }

    .company-logo[b-16903ybju9] {
        max-width: 280px; /* Slightly smaller */
    }

    .heading-text h2[b-16903ybju9] {
        margin-left: 2.3rem; /* Proportionally adjusted */
        font-size: clamp(1.2rem, 4vw, 1.3rem);
    }

    .heading-text .tagline[b-16903ybju9] {
        margin-left: 2.3rem; /* Proportionally adjusted */
        font-size: clamp(1rem, 4vw, 1rem);
    }
}

/* Tablets (iPad and similar) */
@media (max-width: 991px) {
    .login-background[b-16903ybju9] {
        padding-top: 1.5rem;
        min-height: calc(100vh - 17.3rem);
    }

    .login-content-wrapper[b-16903ybju9] {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
        align-items: center;
    }

    .text-content[b-16903ybju9] {
        max-width: 100%;
        align-items: center;
    }

    .company-logo[b-16903ybju9] {
        max-width: 200px; /* Keep decent size on tablets */
    }

    .heading-text[b-16903ybju9] {
        margin-left: 0; /* Center align on tablets */
        text-align: center;
    }

    .login-card[b-16903ybju9] {
        width: 100%;
        max-width: 500px;
        min-height: 500px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .login-background[b-16903ybju9] {
        background-position: right center;
        padding-top: 1rem;
        min-height: calc(100vh - 10rem);
    }

    .login-content-wrapper[b-16903ybju9] {
        padding: 1.5rem;
        gap: 1rem;
    }

    .company-logo[b-16903ybju9] {
        max-width: 160px; /* Smaller but still visible */
    }

    .heading-text[b-16903ybju9] {
        margin-left: 0; /* Center align on mobile */
    }

        .heading-text h2[b-16903ybju9] {
            font-size: clamp(1.1rem, 5vw, 1.5rem);
        }

        .heading-text .tagline[b-16903ybju9] {
            font-size: clamp(0.8rem, 3.5vw, 1rem);
        }

    .login-card[b-16903ybju9] {
        max-width: 100%;
        padding: 1.5rem !important;
        min-height: 480px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .login-background[b-16903ybju9] {
        padding-top: 0.5rem;
        min-height: calc(100vh - 21rem);
    }

    .login-content-wrapper[b-16903ybju9] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .company-logo[b-16903ybju9] {
        max-width: 250px;
    }

    .heading-text h2[b-16903ybju9] {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .heading-text .tagline[b-16903ybju9] {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
    }

    .login-card[b-16903ybju9] {
        padding: 1rem !important;
        min-height: 450px;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .login-background[b-16903ybju9] {
        padding-top: 0.25rem;
        min-height: calc(100vh - 22.5rem);
    }

    .login-content-wrapper[b-16903ybju9] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .company-logo[b-16903ybju9] {
        max-width: 230px;
    }

    .heading-text h2[b-16903ybju9] {
        font-size: 1rem;
    }

    .heading-text .tagline[b-16903ybju9] {
        font-size: 0.75rem;
    }

    .login-card[b-16903ybju9] {
        min-height: 400px;
    }
}

/* Container overrides for full-width layout */
@media (max-width: 1400px) {
    .home-container[b-16903ybju9] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
