@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';
@import '_content/PA.Blazor.Components/PA.Blazor.Components.vyi5gmn7tc.bundle.scp.css';

/* /Components/Dashboard/StatusTile.razor.rz.scp.css */
/* -----------------------------------------------------------------------
    StatusTile.razor.css
    Styles for individual status tiles.
    Copyright (c) Professional Advantage. All rights reserved.
   ----------------------------------------------------------------------- */

.status-tile[b-rywoe0ih07] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 100px;
    padding: 16px 20px;
    border-radius: 12px;
    color: white;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    position: relative;
}

.status-tile.clickable[b-rywoe0ih07] {
    cursor: pointer;
}

.status-tile.clickable:hover[b-rywoe0ih07] {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.status-tile.loading[b-rywoe0ih07] {
    background: #e9ecef;
}

.tile-loading[b-rywoe0ih07] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-count[b-rywoe0ih07] {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.tile-label[b-rywoe0ih07] {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.95;
    white-space: nowrap;
    margin-top: 4px;
}

.tile-icon[b-rywoe0ih07] {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    opacity: 0.6;
}

/* Status color classes - matching workflow colors */
.tile-open[b-rywoe0ih07] {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.tile-submitted[b-rywoe0ih07] {
    background: linear-gradient(135deg, #c0776b 0%, #a05a4e 100%);
}

.tile-partial[b-rywoe0ih07] {
    background: linear-gradient(135deg, #9e6b6b 0%, #7e4b4b 100%);
}

.tile-approved[b-rywoe0ih07] {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.tile-rejected[b-rywoe0ih07] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.tile-export[b-rywoe0ih07] {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.tile-pending[b-rywoe0ih07] {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-tile[b-rywoe0ih07] {
        min-width: 100px;
        height: 80px;
        padding: 12px 16px;
    }

    .tile-count[b-rywoe0ih07] {
        font-size: 22px;
    }

    .tile-label[b-rywoe0ih07] {
        font-size: 11px;
    }
}
/* /Components/Dashboard/WorkflowStatusTiles.razor.rz.scp.css */
/* -----------------------------------------------------------------------
    WorkflowStatusTiles.razor.css
    Styles for the workflow status tiles dashboard component.
    Copyright (c) Professional Advantage. All rights reserved.
   ----------------------------------------------------------------------- */

.workflow-status-container[b-apo6q21ns7] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.workflow-header[b-apo6q21ns7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.workflow-title[b-apo6q21ns7] {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

.workflow-title .oi[b-apo6q21ns7] {
    color: #6c757d;
}

.workflow-date-range[b-apo6q21ns7] {
    font-size: 13px;
}

/* Arrow container with workflow tiles */
.workflow-arrow-container[b-apo6q21ns7] {
    position: relative;
    padding: 20px 0;
}

.workflow-arrow-bg[b-apo6q21ns7] {
    position: absolute;
    top: 50%;
    left: 0;
    right: 60px;
    height: 60px;
    transform: translateY(-50%);
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 50%, #d4a69a 100%);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    border-radius: 8px 0 0 8px;
    opacity: 0.4;
}

.workflow-tiles[b-apo6q21ns7] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
    flex-wrap: wrap;
}

/* Individual status tiles */
.status-tile[b-apo6q21ns7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 80px;
    padding: 12px 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
}

.status-tile.clickable[b-apo6q21ns7] {
    cursor: pointer;
}

.status-tile.clickable:hover[b-apo6q21ns7] {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.tile-count[b-apo6q21ns7] {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.tile-label[b-apo6q21ns7] {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.95;
    white-space: nowrap;
}

/* Status color classes - matching the image */
.status-open[b-apo6q21ns7] {
    background: #e67e22;
}

.status-submitted[b-apo6q21ns7] {
    background: #c0776b;
}

.status-partial[b-apo6q21ns7] {
    background: #9e6b6b;
}

.status-approved[b-apo6q21ns7] {
    background: #8b7b7b;
}

.status-rejected[b-apo6q21ns7] {
    background: #6b6b6b;
}

.status-export[b-apo6q21ns7] {
    background: #95a5a6;
}

/* Loading state */
.loading-state[b-apo6q21ns7] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .workflow-tiles[b-apo6q21ns7] {
        gap: 12px;
    }

    .status-tile[b-apo6q21ns7] {
        min-width: 85px;
        padding: 10px 16px;
    }

    .tile-count[b-apo6q21ns7] {
        font-size: 20px;
    }

    .tile-label[b-apo6q21ns7] {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .workflow-status-container[b-apo6q21ns7] {
        padding: 16px;
    }

    .workflow-arrow-bg[b-apo6q21ns7] {
        display: none;
    }

    .workflow-tiles[b-apo6q21ns7] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .status-tile[b-apo6q21ns7] {
        min-width: unset;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .workflow-tiles[b-apo6q21ns7] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout .page[b-ikxrn50whz] {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.admin-layout main[b-ikxrn50whz] {
    flex: 1;
}

.admin-layout .sidebar[b-ikxrn50whz] {
    background-color: var(--bs-body-bg, #ffffff);
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
    border-right: 1px solid var(--bs-border-color, #e9ecef);
}

.admin-layout .top-row[b-ikxrn50whz] {
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.admin-layout .content[b-ikxrn50whz] {
    padding-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .admin-layout .page[b-ikxrn50whz] {
        flex-direction: column;
        padding-top: 60px;
    }

    .admin-layout .sidebar[b-ikxrn50whz] {
        display: none;
    }
}
/* /Components/Layout/DesktopLayout.razor.rz.scp.css */
.desktop-layout .page[b-4a8w4enuye] {
    position: relative;
    display: flex;
    flex-direction: row;
}

.desktop-layout main[b-4a8w4enuye] {
    flex: 1;
}

.desktop-layout .sidebar[b-4a8w4enuye] {
    background-color: #ffffff;
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1031;
    border-right: 1px solid #e9ecef;
}

.desktop-layout .top-row[b-4a8w4enuye] {
    background-color: #ffffff;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.desktop-layout .top-row[b-4a8w4enuye]  a,
.desktop-layout .top-row .btn-link[b-4a8w4enuye] {
    white-space: nowrap;
    margin-left: 1.5rem;
}

.desktop-layout .content[b-4a8w4enuye] {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
}
/* /Components/Layout/MobileLayout.razor.rz.scp.css */
/* Pin theme colors to defaults so mobile pages are unaffected by SiteSettings overrides */
.mobile-layout[b-36ihg6vvtp] {
    --site-primary: #51215c;
    --site-primary-light: #8D6E95;
    --site-primary-lighter: #B09BB5;
    --site-primary-dark: #3C1845;
    --site-secondary: #F7A711;
    --site-secondary-light: #F8B840;
}

.mobile-layout .page[b-36ihg6vvtp] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mobile-layout main[b-36ihg6vvtp] {
    flex: 1;
    padding-top: 60px; /* Space for fixed navbar */
}

.mobile-layout .content[b-36ihg6vvtp] {
    padding: 0;
}

/* Ensure content doesn't get hidden behind fixed navbar */
.mobile-layout article[b-36ihg6vvtp] {
    padding-bottom: 1rem;
}
/* /Components/Navigation/AdaptiveNavMenu.razor.rz.scp.css */
.desktop-nav-menu[b-m1xa8no9za] {
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.desktop-nav-menu .top-row[b-m1xa8no9za] {
    border-bottom: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
}

.desktop-nav-menu .nav-scrollable[b-m1xa8no9za] {
    flex: 1;
    overflow-y: auto;
    padding-top: 1rem;
}

.desktop-nav-menu .nav-item[b-m1xa8no9za] {
    margin-bottom: 0.25rem;
}

.desktop-nav-menu .nav-link[b-m1xa8no9za] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #333;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.desktop-nav-menu .nav-link:hover[b-m1xa8no9za] {
    background-color: #f8f9fa;
    color: var(--site-primary, #51215c);
}

.desktop-nav-menu .nav-link.active[b-m1xa8no9za] {
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
}

.desktop-nav-menu .nav-link .oi[b-m1xa8no9za] {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.desktop-nav-menu .nav-section[b-m1xa8no9za] {
    border-top: 1px solid #e9ecef;
    padding-top: 0.75rem;
}

.desktop-nav-menu .nav-section small[b-m1xa8no9za] {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Mobile-specific styles */
.navmenu-nav-item[b-m1xa8no9za] {
    padding: 0.25rem 0;
}

.navmenu-logout-link[b-m1xa8no9za] {
    margin-top: 1rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.navmenu-logout-link-caption[b-m1xa8no9za] {
    color: #dc3545;
}

.navmenu-logout-link-right .nav-link[b-m1xa8no9za] {
    color: #ffffff;
}

.main-navbar[b-m1xa8no9za] {
    background-color: var(--site-primary, #51215c);
}

.webtime-menu-toggler[b-m1xa8no9za] {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
}

.webtime-menu-toggler[b-m1xa8no9za]::before,
.webtime-menu-toggler[b-m1xa8no9za]::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
}

.webtime-menu-toggler[b-m1xa8no9za]::before {
    top: -6px;
}

.webtime-menu-toggler[b-m1xa8no9za]::after {
    bottom: -6px;
}
/* /Components/Navigation/AdminNavMenu.razor.rz.scp.css */
.admin-nav-menu[b-euit1icx81] {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.admin-nav-header[b-euit1icx81] {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.admin-nav-header .oi[b-euit1icx81] {
    font-size: 1rem;
}

.admin-nav[b-euit1icx81] {
    padding: 0.5rem 0;
}

/* Admin section */
.admin-section[b-euit1icx81] {
    border-bottom: 1px solid #e9ecef;
}

.admin-section:last-child[b-euit1icx81] {
    border-bottom: none;
}

.section-header[b-euit1icx81] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #495057;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.section-header:hover[b-euit1icx81] {
    background-color: #e9ecef;
}

.section-chevron[b-euit1icx81] {
    font-size: 0.625rem;
    color: #6c757d;
}

/* Section items */
.section-items[b-euit1icx81] {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

.section-item[b-euit1icx81] {
    border-top: 1px solid #f0f0f0;
}

.section-link[b-euit1icx81] {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem 0.625rem 2rem;
    color: #333;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: background-color 0.2s, color 0.2s;
}

.section-link:hover[b-euit1icx81] {
    background-color: #f8f9fa;
    color: var(--site-primary, #51215c);
}

.section-link.active[b-euit1icx81] {
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
}

.section-link .oi[b-euit1icx81] {
    font-size: 0.75rem;
    width: 1.25rem;
    text-align: center;
}

/* Direct admin links */
.admin-link[b-euit1icx81] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s, color 0.2s;
}

.admin-link:hover[b-euit1icx81] {
    background-color: #e9ecef;
    color: var(--site-primary, #51215c);
}

.admin-link.active[b-euit1icx81] {
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
}

.admin-link .oi[b-euit1icx81] {
    font-size: 0.875rem;
    width: 1.25rem;
    text-align: center;
}
/* /Components/Navigation/BreadcrumbNav.razor.rz.scp.css */
.breadcrumb-nav[b-a76q7tkno3] {
    padding: 0.5rem 0;
}

.breadcrumb[b-a76q7tkno3] {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    font-size: 0.875rem;
}

.breadcrumb-bg[b-a76q7tkno3] {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.breadcrumb-item[b-a76q7tkno3] {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item[b-a76q7tkno3]::before {
    content: "/";
    padding: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-link[b-a76q7tkno3] {
    color: var(--site-primary, #51215c);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover[b-a76q7tkno3] {
    color: var(--site-primary-dark, #3d1847);
    text-decoration: underline;
}

.breadcrumb-link .oi[b-a76q7tkno3] {
    font-size: 0.8125rem;
}

.breadcrumb-text[b-a76q7tkno3] {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-item.active .breadcrumb-text[b-a76q7tkno3] {
    color: #212529;
}

/* Mobile styles */
@media (max-width: 768px) {
    .breadcrumb[b-a76q7tkno3] {
        font-size: 0.8125rem;
    }

    .breadcrumb-item + .breadcrumb-item[b-a76q7tkno3]::before {
        padding: 0 0.375rem;
    }
}
/* /Components/Navigation/DesktopSidebar.razor.rz.scp.css */
.desktop-sidebar[b-jhib38u6hx] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #e9ecef;
    width: 250px;
    position: relative;
    z-index: 1031; /* Above fixed-top header (Bootstrap z-index: 1030) */
}

.sidebar-brand[b-jhib38u6hx] {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.brand-link[b-jhib38u6hx] {
    display: inline-block;
}

.brand-logo[b-jhib38u6hx] {
    height: 40px;
    width: auto;
}

/* User Info Section */
.sidebar-user-info[b-jhib38u6hx] {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.user-avatar[b-jhib38u6hx] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.user-details[b-jhib38u6hx] {
    flex: 1;
    min-width: 0;
}

.user-name[b-jhib38u6hx] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role[b-jhib38u6hx] {
    font-size: 0.8125rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Impersonation Styles */
.sidebar-user-info.impersonating[b-jhib38u6hx] {
    background-color: #fff3cd;
    border-bottom: 1px solid #ffc107;
}

.user-avatar.impersonating-avatar[b-jhib38u6hx] {
    background-color: #ffc107;
    color: #212529;
}

.impersonation-indicator[b-jhib38u6hx] {
    font-size: 0.6875rem;
    color: #856404;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
}

.impersonation-indicator .oi[b-jhib38u6hx] {
    font-size: 0.625rem;
}

/* Impersonation Banner */
.impersonation-banner[b-jhib38u6hx] {
    background-color: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.impersonation-info[b-jhib38u6hx] {
    font-size: 0.75rem;
    color: #856404;
    display: flex;
    align-items: center;
}

.impersonation-info .oi[b-jhib38u6hx] {
    font-size: 0.625rem;
}

.logged-in-as[b-jhib38u6hx] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stop-impersonating-link[b-jhib38u6hx] {
    font-size: 0.75rem;
    color: #856404;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 193, 7, 0.3);
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    width: fit-content;
}

.stop-impersonating-link:hover[b-jhib38u6hx] {
    background-color: rgba(255, 193, 7, 0.5);
    color: #533f03;
    text-decoration: none;
}

.stop-impersonating-link .oi[b-jhib38u6hx] {
    font-size: 0.625rem;
}

/* Search Box */
.sidebar-search[b-jhib38u6hx] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.search-input-wrapper[b-jhib38u6hx] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-jhib38u6hx] {
    position: absolute;
    left: 0.75rem;
    color: #6c757d;
    font-size: 0.875rem;
    pointer-events: none;
}

.search-input[b-jhib38u6hx] {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 2.25rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    color: #333;
    background-color: #f8f9fa;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.search-input:focus[b-jhib38u6hx] {
    outline: none;
    border-color: var(--site-primary, #51215c);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(81, 33, 92, 0.1);
}

.search-input[b-jhib38u6hx]::placeholder {
    color: #adb5bd;
}

.search-clear[b-jhib38u6hx] {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
}

.search-clear:hover[b-jhib38u6hx] {
    background-color: #e9ecef;
    color: #333;
}

.search-clear .oi[b-jhib38u6hx] {
    font-size: 0.75rem;
}

.search-results-header[b-jhib38u6hx] {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid #f0f0f0;
}

.search-no-results[b-jhib38u6hx] {
    text-align: center;
    padding: 2rem 1rem;
    color: #6c757d;
}

.search-no-results .oi[b-jhib38u6hx] {
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.search-no-results p[b-jhib38u6hx] {
    margin: 0;
    font-size: 0.9375rem;
}

/* Navigation */
.sidebar-nav[b-jhib38u6hx] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0;
}

.sidebar-nav .nav-link[b-jhib38u6hx] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    font-size: 0.9375rem;
    border-radius: 0;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.sidebar-nav .nav-link:hover[b-jhib38u6hx] {
    background-color: #f8f9fa;
    color: var(--site-primary, #51215c);
}

.sidebar-nav .nav-link.active[b-jhib38u6hx] {
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
}

.sidebar-nav .nav-link .oi[b-jhib38u6hx] {
    font-size: 1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

/* Section styles */
.nav-section[b-jhib38u6hx] {
    margin-top: 0.75rem;
}

.nav-section-header[b-jhib38u6hx] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-section-header:hover[b-jhib38u6hx] {
    background-color: #f8f9fa;
    color: var(--site-primary, #51215c);
}

.nav-section-header .oi[b-jhib38u6hx] {
    font-size: 0.875rem;
    width: 1.5rem;
}

.nav-section-header .section-title[b-jhib38u6hx] {
    flex: 1;
    text-align: left;
}

.nav-section-header .section-chevron[b-jhib38u6hx] {
    font-size: 0.75rem;
}

.nav-section-children[b-jhib38u6hx] {
    padding-left: 0.5rem;
    border-left: 2px solid #e9ecef;
    margin-left: 1.25rem;
}

.nav-section-children .nav-link[b-jhib38u6hx] {
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
}

/* Footer styles */
.sidebar-footer[b-jhib38u6hx] {
    padding: 0.5rem 1rem 1rem;
    margin-top: auto;
}

.footer-divider[b-jhib38u6hx] {
    height: 1px;
    background-color: #e9ecef;
    margin-bottom: 0.75rem;
}

.logout-link[b-jhib38u6hx] {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: #dc3545;
    font-size: 0.9375rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    text-decoration: none;
}

.logout-link:hover[b-jhib38u6hx] {
    background-color: #f8d7da;
    color: #721c24;
}

.logout-link .oi[b-jhib38u6hx] {
    font-size: 1rem;
}

/* Draggable Nav Link Wrapper */
.nav-link-wrapper[b-jhib38u6hx] {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link-wrapper .nav-link[b-jhib38u6hx] {
    flex: 1;
}

.nav-link-wrapper .drag-handle[b-jhib38u6hx] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 0.75rem;
    opacity: 0;
    cursor: grab;
    padding: 4px;
    transition: opacity 0.2s, color 0.2s;
}

.nav-link-wrapper:hover .drag-handle[b-jhib38u6hx] {
    opacity: 1;
}

.nav-link-wrapper .drag-handle:hover[b-jhib38u6hx] {
    color: var(--site-primary, #51215c);
}

.nav-link-wrapper.dragging[b-jhib38u6hx] {
    opacity: 0.5;
    background-color: #f8f9fa;
}

.nav-link-wrapper.dragging .drag-handle[b-jhib38u6hx] {
    opacity: 1;
    cursor: grabbing;
}

/* Quick Action Indicator */
.quick-action-indicator[b-jhib38u6hx] {
    margin-left: auto;
    color: #ffc107;
    font-size: 0.75rem;
}

.sidebar-nav .nav-link.active .quick-action-indicator[b-jhib38u6hx] {
    color: #ffffff;
}
/* /Components/Navigation/MobileNavBar.razor.rz.scp.css */
/* Mobile Navigation Bar */
.mobile-navbar[b-76pghevr4c] {
    background-color: var(--site-primary, #51215c);
    padding: 0.5rem 1rem;
    z-index: 1050;
}

.mobile-brand-logo[b-76pghevr4c] {
    height: 32px;
    width: auto;
}

/* Hamburger Menu Icon */
.mobile-menu-icon[b-76pghevr4c] {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
}

.mobile-menu-icon[b-76pghevr4c]::before,
.mobile-menu-icon[b-76pghevr4c]::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
}

.mobile-menu-icon[b-76pghevr4c]::before {
    top: -7px;
}

.mobile-menu-icon[b-76pghevr4c]::after {
    bottom: -7px;
}

.navbar-toggler[b-76pghevr4c] {
    padding: 0.5rem;
    border: none;
}

.navbar-toggler:focus[b-76pghevr4c] {
    box-shadow: none;
}

/* Off-Canvas Drawer */
.mobile-nav-drawer[b-76pghevr4c] {
    max-width: 280px;
}

.mobile-nav-drawer .offcanvas-header[b-76pghevr4c] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
}

.drawer-home-link[b-76pghevr4c] {
    display: flex;
    align-items: center;
    color: var(--site-primary, #51215c);
    text-decoration: none;
    font-weight: 600;
}

.drawer-home-link:hover[b-76pghevr4c] {
    color: var(--site-primary-dark, #3d1847);
}

/* Mobile Navigation List */
.mobile-nav-list[b-76pghevr4c] {
    padding: 0;
    margin: 0;
}

.mobile-nav-list .nav-item[b-76pghevr4c] {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list .nav-link[b-76pghevr4c] {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #333;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.mobile-nav-list .nav-link:hover[b-76pghevr4c] {
    background-color: #f8f9fa;
    color: var(--site-primary, #51215c);
}

.mobile-nav-list .nav-link.active[b-76pghevr4c] {
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
}

.mobile-nav-list .nav-link .oi[b-76pghevr4c] {
    font-size: 1rem;
    width: 1.5rem;
    text-align: center;
}

/* Logout Item */
.logout-item[b-76pghevr4c] {
    margin-top: 1rem;
    border-top: 2px solid #e9ecef;
    border-bottom: none !important;
}

.logout-link[b-76pghevr4c] {
    color: #dc3545 !important;
}

.logout-link:hover[b-76pghevr4c] {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}
/* /Components/Navigation/QuickActionsPanel.razor.rz.scp.css */
/* -----------------------------------------------------------------------
    QuickActionsPanel.razor.css
    Styles for the quick actions panel container.
    Copyright (c) Professional Advantage. All rights reserved.
   ----------------------------------------------------------------------- */

.quick-actions-panel[b-oaigmgvl8w] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.panel-header[b-oaigmgvl8w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.panel-title[b-oaigmgvl8w] {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

.panel-title .oi[b-oaigmgvl8w] {
    color: #ffc107;
}

.panel-actions .btn-link[b-oaigmgvl8w] {
    padding: 4px 8px;
}

.panel-actions .btn-link:hover[b-oaigmgvl8w] {
    background: #f8f9fa;
    border-radius: 4px;
}

/* Quick Actions Grid */
.quick-actions-grid[b-oaigmgvl8w] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    min-height: 80px;
    transition: all 0.2s ease;
}

.quick-actions-grid.edit-mode[b-oaigmgvl8w] {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 16px;
    background: #f8f9fa;
}

.quick-actions-grid.drop-target[b-oaigmgvl8w] {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* Loading State */
.loading-placeholder[b-oaigmgvl8w] {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Empty State */
.empty-state[b-oaigmgvl8w] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-icon[b-oaigmgvl8w] {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.empty-text[b-oaigmgvl8w] {
    color: #6c757d;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Add Action Placeholder */
.add-action-placeholder[b-oaigmgvl8w] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border: 2px dashed #adb5bd;
    border-radius: 12px;
    color: #6c757d;
    min-height: 120px;
    text-align: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.add-action-placeholder .oi[b-oaigmgvl8w] {
    font-size: 24px;
    margin-bottom: 8px;
}

.add-action-placeholder:hover[b-oaigmgvl8w] {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* Edit Mode Hint */
.edit-mode-hint[b-oaigmgvl8w] {
    margin-top: 16px;
    padding: 12px 16px;
    background: #e7f3ff;
    border-radius: 8px;
    font-size: 13px;
    color: #0d6efd;
    display: flex;
    align-items: center;
}

/* Status Tile Wrapper in Quick Actions */
.quick-action-status-tile-wrapper[b-oaigmgvl8w] {
    position: relative;
}

.quick-action-status-tile-wrapper.edit-mode[b-oaigmgvl8w]  .status-tile {
    animation: gentle-pulse-b-oaigmgvl8w 2s infinite;
}

.quick-action-status-tile-wrapper .tile-remove-btn[b-oaigmgvl8w] {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quick-action-status-tile-wrapper .tile-remove-btn:hover[b-oaigmgvl8w] {
    transform: scale(1.1);
    background: #c82333;
}

@keyframes gentle-pulse-b-oaigmgvl8w {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-actions-grid[b-oaigmgvl8w] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-actions-panel[b-oaigmgvl8w] {
        padding: 16px;
    }

    .quick-actions-grid[b-oaigmgvl8w] {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
/* /Components/Navigation/QuickActionTile.razor.rz.scp.css */
/* -----------------------------------------------------------------------
    QuickActionTile.razor.css
    Styles for individual quick action tiles.
    Copyright (c) Professional Advantage. All rights reserved.
   ----------------------------------------------------------------------- */

.quick-action-tile[b-19kv8w77c5] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    min-height: 120px;
    text-align: center;
    user-select: none;
}

.quick-action-tile:hover[b-19kv8w77c5] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.quick-action-tile:active[b-19kv8w77c5] {
    transform: translateY(-2px);
}

.quick-action-tile.dragging[b-19kv8w77c5] {
    opacity: 0.5;
    transform: scale(0.95);
    cursor: grabbing;
}

.quick-action-tile.edit-mode[b-19kv8w77c5] {
    cursor: grab;
    animation: gentle-pulse-b-19kv8w77c5 2s infinite;
}

.quick-action-tile.edit-mode:hover[b-19kv8w77c5] {
    transform: translateY(-2px);
}

@keyframes gentle-pulse-b-19kv8w77c5 {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    }
}

.tile-icon[b-19kv8w77c5] {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-icon .oi[b-19kv8w77c5] {
    font-size: 32px;
    color: white;
}

.tile-title[b-19kv8w77c5] {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tile-drag-handle[b-19kv8w77c5] {
    position: absolute;
    top: 8px;
    left: 8px;
    opacity: 0.7;
    font-size: 14px;
}

.tile-remove-btn[b-19kv8w77c5] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.2s ease;
}

.tile-remove-btn:hover[b-19kv8w77c5] {
    background: rgba(220, 53, 69, 0.9);
}
/* /Components/TooltipComponent.razor.rz.scp.css */

/* pa-tooltip*/
.pa-tooltip[b-ou8xbv4f9s]
{
    position: relative;
    display: inline-block;
    width: 100%;
}

    .pa-tooltip > div:first-child[b-ou8xbv4f9s]
    {
        visibility: hidden;
        position: absolute;
        display: inline-block;
        top: 120%;
        background-color: #fff;
        padding: 5px;
        border-style: solid;
        border-color: rgba(34,34,34,.125);
        border-width: 1px;
        border-radius: 3px;
        z-index: 1;
    }

        .pa-tooltip > div:first-child:empty[b-ou8xbv4f9s]
        {
            display: none;
        }

        .pa-tooltip > div:first-child[b-ou8xbv4f9s]::before
        {
            Content: "";
            position: absolute;
            bottom: 100%;
            left: 10px;
            margin-left: -5px;
            margin-bottom: 1px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent rgba(34,34,34,.125) transparent;
        }

        .pa-tooltip > div:first-child[b-ou8xbv4f9s]::after
        {
            content: "";
            position: absolute;
            bottom: 100%;
            Left: 10px;
            margin-left: -4px;
            border-width: 4px;
            border-style: solid;
            border-color: transparent transparent #fff transparent;
        }

    .pa-tooltip:hover div:first-child[b-ou8xbv4f9s]
    {
        visibility: visible;
    }

.pa-tooltip-hide[b-ou8xbv4f9s]
{
    position: relative;
    display: inline-block;
    width: 100%;
}

    .pa-tooltip-hide > div:first-child[b-ou8xbv4f9s]
    {
        visibility: hidden;
        position: absolute;
    }

/*#end pa-tooltip*/


.tooltip-wrapper[b-ou8xbv4f9s]
{
    position: relative;
    cursor: help;
}
    .tooltip-wrapper:hover #spanText[b-ou8xbv4f9s]
    {
        visibility: visible;
    }
#spanText[b-ou8xbv4f9s]
{
    visibility: hidden;
    position: absolute;
    width: 100%;
    bottom: 100%;
    left: 10px;
    margin-left: -20px;
    background-color: var(--site-primary, #51215c);
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    margin-bottom: 13px;
    border-radius: 6px;
    z-index: 1;
}

    #spanText[b-ou8xbv4f9s]::after
    {
        content: "";
        position: absolute;
        top: 100%;
        left: 5%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }
.SettingsTab[b-ou8xbv4f9s]
{
    font-size: 12px;
    font-weight: 500;
}

.SettingsLabel[b-ou8xbv4f9s]
{
    font-size: 11px;
}
/* /Components/UI/ButtonIcon.razor.rz.scp.css */
.webtime-buttonicon[b-4emoh8sl11]
{
    margin-left: 5px;
    margin-right: 5px;
    width:152px;
    height:48px;
}

@media (min-width: 50px)
{
    .webtime-buttonicon[b-4emoh8sl11]
    {
        margin-left: 2px;
        margin-right: 2px;
        width: 90px !important;
    }
    .btn[b-4emoh8sl11]
    {
        font-size: 10pt !important;
    }
}

@media (min-width: 360px)
{
    .webtime-buttonicon[b-4emoh8sl11]
    {
        margin-left: 2px;
        margin-right: 2px;
        width: 100px !important;
    }
    .btn[b-4emoh8sl11]
    {
        font-size: 11pt !important;
    }
}

@media (min-width: 375px)
{
    .webtime-buttonicon[b-4emoh8sl11]
    {
        width: 100px !important;
    }
    .btn[b-4emoh8sl11]
    {
        font-size: 11pt !important;
    }
}

@media (min-width: 425px)
{
    .webtime-buttonicon[b-4emoh8sl11]
    {
        margin-left: 5px !important;
        margin-right: 5px !important;
        width: 111px !important;
    }
    .btn[b-4emoh8sl11]
    {
        font-size: 13pt !important;
    }
}

@media (min-width: 550px)
{
    .webtime-buttonicon[b-4emoh8sl11]
    {
        margin-left: 5px !important;
        margin-right: 5px !important;
        width: 152px !important;
    }

    .btn[b-4emoh8sl11]
    {
        font-size: 13pt !important;
    }
}

/* /Components/UI/CaptionOverlay.razor.rz.scp.css */
/* /Components/UI/ScreenHeader.razor.rz.scp.css */
.screen-header-backbutton-caption[b-69rf276pzm]
{
    cursor:pointer;
}
    .screen-header-backbutton-caption:hover[b-69rf276pzm]
    {
        color: white;
        text-decoration: underline;
        font-size: 1.00em;
    }
/* /Components/UI/Timesheets/ApprovalOptions.razor.rz.scp.css */
.approval-options-accordion[b-igahn6xner]
{
}

.accordion[b-igahn6xner]
{
    width: 244px !important;
    top: 141px;
}
.accordion-item[b-igahn6xner]
{
    margin-bottom: 0px !important;
}
.accordion-button[b-igahn6xner]
{
    background-color: white;
    color: var(--site-primary-light, #804D99);
    font-size: 16px;
    font-weight: bold;
    padding: 21px;
}
    .accordion-button[b-igahn6xner]::after
    {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    }

    li[b-igahn6xner]
    {
        padding: 10px;
    }
.accordion-body[b-igahn6xner]
{
    width: 244px;
    height: 148px;
    padding: 10px !important;
}

.approval-option[b-igahn6xner]
{
    font-size: 16px;
    font-weight: bold;
    text-wrap: nowrap;
    margin-bottom: 25px;
    cursor: pointer;
}
.approval-option-icon[b-igahn6xner]
{
    height: 23px;
}
.approval-option-icon-span[b-igahn6xner]
{
    margin-right: .25rem !important;
}
/* /Components/UI/Timesheets/Compliance/MealBreakEntry.razor.rz.scp.css */
[b-yj1z0p65r0]
.form-check-input, .form-check-label[b-yj1z0p65r0] 
{
    cursor: pointer;
}
/* /Components/UI/Timesheets/OverlapSplitPreview.razor.rz.scp.css */
/* OverlapSplitPreview — scoped styles */

.overlap-preview-card[b-1ii0xg32a2] {
    border: 1px solid var(--site-primary-light, #804d99);
    border-left: 4px solid var(--site-primary, #51215c);
    border-radius: 6px;
    background-color: #f9f5fb;
    overflow: hidden;
    display: inline-block;
    max-width: 420px;
}

.overlap-preview-header[b-1ii0xg32a2] {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background-color: var(--site-primary, #51215c);
    color: #fff;
    font-size: 0.95rem;
}

.overlap-preview-header i[b-1ii0xg32a2] {
    font-size: 0.9rem;
}

.overlap-preview-body[b-1ii0xg32a2] {
    padding: 8px 12px;
}

.overlap-group[b-1ii0xg32a2] {
    margin-bottom: 6px;
}

.overlap-group:last-child[b-1ii0xg32a2] {
    margin-bottom: 0;
}

.overlap-group-label[b-1ii0xg32a2] {
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.overlap-group-label .text-muted[b-1ii0xg32a2] {
    margin-left: 4px;
    font-style: italic;
}

.overlap-fragments[b-1ii0xg32a2] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 8px;
}

.overlap-fragment-row[b-1ii0xg32a2] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    padding: 3px 8px;
    background-color: #fff;
    border: 1px solid #e0d4e6;
    border-radius: 4px;
}

.overlap-time[b-1ii0xg32a2] {
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: 600;
    color: var(--site-primary, #51215c);
}

.overlap-arrow[b-1ii0xg32a2] {
    color: var(--site-primary-light, #804d99);
    font-weight: bold;
}

.overlap-hours[b-1ii0xg32a2] {
    margin-left: auto;
    font-weight: 600;
    color: var(--site-primary-dark, #3d1847);
    background-color: #ece3f0;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.85rem;
}
/* /Components/UI/Timesheets/TimesheetDetailEntry.razor.rz.scp.css */

.timesheet-detail-entry[b-vgpcqhctc5]
{
    cursor: pointer;
    font-size: 14px;
    background-color: #ffeac2;
    margin-bottom: 5px;
}

    .timesheet-detail-entry :hover[b-vgpcqhctc5]
    {
        background-color: #fff9ef;
    }

.timesheet-detail-entry-modified[b-vgpcqhctc5] {
    font-style: italic;
    text-decoration: underline;
    background-color: #fffbdd;
}
.timesheet-detail-entry-line-item[b-vgpcqhctc5]
{
    padding:2px;
}
/* /Components/UI/Timesheets/TimesheetEdit.razor.rz.scp.css */
.timesheetedit-form-item[b-1worupw2ii]
{
    padding-left:0px;
}

.timesheet-edit-footer[b-1worupw2ii]
{
    max-width: var(--application-max-width);
    margin:auto;
}

.timesheet-edit-totalhours-alert[b-1worupw2ii]
{
    background-color: #efebf0;
}

.timesheet-edit-position-alert[b-1worupw2ii]
{
    background-color: #e9ecef;
    border: 1px solid #b8b8b8 !important;
    font-size: 12px;
}

.timesheet-edit-button-icon[b-1worupw2ii]
{
    color: #bba9c0;
}

.timesheet-edit-attachment-info[b-1worupw2ii]
{
    color: #a6c3f2;
}

/* Required/Invalid field styling */
.required-input-field[b-1worupw2ii] {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5 !important;
}

.required-input-field:focus[b-1worupw2ii] {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* PayType required styling - use ::deep for child elements */
[b-1worupw2ii] .paytype-required,
.paytype-required[b-1worupw2ii] {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5 !important;
}

[b-1worupw2ii] .paytype-required:focus,
.paytype-required:focus[b-1worupw2ii] {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Meal-break waiver checkbox: rendered as in-flow flex content in its own layout
   cell (grid mode) or within the wide PayType cell (non-grid). Replaces a former
   inline margin-left:226% offset hack that shifted the checkbox over the sibling
   Units column and made it unclickable (hit-testing lost to the sibling). WI 58923. */
.waive-meal-break[b-1worupw2ii] {
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-height: 30.5px;
}

/* The unit-of-measure cell is sized for the short "Hours" caption. iFathom relabels it as
   "Amount Worked", which wraps onto extra lines and spills out of the fixed 30.5px box, so
   the text is shrunk and centred (the icon is dropped in the markup). AB#61125. */
.unit-of-measure-compact[b-1worupw2ii] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    line-height: 1;
    text-align: center;
    overflow: hidden;
}
/* /Components/UI/Timesheets/TimesheetGridDetail.razor.rz.scp.css */
th[b-4lad703qtk], td[b-4lad703qtk]
{
    text-align: center;
    vertical-align: middle;
    padding: 0.5rem;
}
.timesheet-details-button[b-4lad703qtk]
{
    padding: 7px;
    height: 42px;
    width: auto;
    min-width: 100px;
    font-size: 16px !important;
    font-weight: normal !important;
    border-radius: 14px;
}
.temp-entry-message[b-4lad703qtk]
{
    border-color: #aa8be0 !important;
    padding-top: 8px;
    padding-bottom: 8px;
}
.grand-total-cell[b-4lad703qtk]
{
    flex: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.7em;
    color: var(--site-primary-light, #89359c);
}

/* Saving overlay styles */
.saving-overlay[b-4lad703qtk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saving-overlay-content[b-4lad703qtk] {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}
/* /Components/UI/Timesheets/TimesheetHeaderEntry.razor.rz.scp.css */

.timesheet-header-entry-card[b-oaf5kv1yhx]
{
    font-size: 14px;
    cursor: pointer;
    background-color: #580c6917;
    margin-bottom: 10px;
}

.timesheet-header-entry-card :hover[b-oaf5kv1yhx]
{
    background-color: #ececec;
}

.timesheet-header-entry[b-oaf5kv1yhx]
{
    background-color: #52225d17;
    font-size: 1rem;
    cursor: default;
}

.timesheet-header-entry-details-table[b-oaf5kv1yhx]
{
    background-color: #ffebc5;
    color: black;
}
    .timesheet-header-entry-details-table td[b-oaf5kv1yhx] {
        padding:5px;
    }

.timesheet-header-entry-summary-line[b-oaf5kv1yhx]
{
    border-top: 1px solid #bebebe;
    color: black;
}

.accordion-button[b-oaf5kv1yhx]::after
{
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox=' 0 0 19 19' fill='darkpurple'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.timesheet-header-entry-item-description[b-oaf5kv1yhx]
{
    font-weight:normal !important;
    width: 95%;
}
.accordion-button:not(.collapsed)[b-oaf5kv1yhx]
{
}
.accordion-item[b-oaf5kv1yhx]
{
    margin-bottom: 5px !important;
}

/* /Components/UI/Timesheets/TimesheetsCalendar.razor.rz.scp.css */
.toolbar-button[b-8orkuwfqw7]
{
    padding: 7px;
    height: 42px;
    font-size: 13pt !important;
    width: 140px;
}

[b-8orkuwfqw7]
.timesheets-scheduler
{
    /*width: 100%;*/
    min-height: 800px;
    max-height: 900px;
}

[b-8orkuwfqw7]
.dxbl-sc-apt-time
{
    font-size: 15px !important;
}
[b-8orkuwfqw7]
.dxbl-sc-apt-subject
{
    /*font-size: 17px !important;*/
}
[b-8orkuwfqw7]
.dxbl-sc-apt-description
{
    font-size: 14px !important;
}

.stat-card[b-8orkuwfqw7]
{
    padding: .9rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.06);
    text-align: center;
    position: relative;
    border-left: 4px solid transparent;
    min-width: 250px;
    max-width: 250px;
}
.card-hours[b-8orkuwfqw7]
{
    background: #F5F3FF;
    border-left-color: #7C3AED;
}
.card-days[b-8orkuwfqw7]
{
    background: #EFF6FF;
    border-left-color: #2563EB;
}
.card-month[b-8orkuwfqw7]
{
    background: #ECFDF5;
    border-left-color: #10B981;
}
.card-missing[b-8orkuwfqw7]
{
    background: #FEF2F2;
    border-left-color: #EF4444;
}

.stat-card .icon[b-8orkuwfqw7]
{
    position: absolute;
    top: .6rem;
    left: .6rem;
    opacity: .9;
    font-size: 1.6rem;
}
[b-8orkuwfqw7]
button
{
    font-size: 1.1rem !important;
    height: 36px;
    border-radius: 14px;
    min-width: 100px;
}
/* /Components/UI/Timesheets/TimesheetsGrid.razor.rz.scp.css */
/* /Components/UI/Timesheets/TimesheetsListing.razor.rz.scp.css */
.timesheetinquiry-accordionitem-totaltimesheets[b-byvh1pw056]
{
    margin-left: 5px;
}

[b-byvh1pw056] 
.full-width-quickgrid
{
    width: 100%;
}

[b-byvh1pw056]
.summary
{
    display: none;
}

[b-byvh1pw056]
.paginator
{
    display: grid;
    justify-content: center;
    background-color: var(--site-primary, #51215c);
    color: var(--bs-white);
    border-top: 0px solid #ced4da;
    border-bottom: 0px solid #ced4da;
    padding: 20px;
    margin: 0px;
    margin-right: 0px;
    font-size: 12px;
    font-weight: normal;
    text-wrap: pretty;
}
[b-byvh1pw056]
.paginator-fixed-temp
{
    position: fixed;
    right: 0;
    bottom: 80px;
    left: 0;
    z-index: 1030;
}

[b-byvh1pw056]
.paginator-fixed-approver
{
    position: fixed;
    right: 0;
    bottom: 0px;
    left: 0;
    z-index: 1030;
}

[b-byvh1pw056] .go-first, [b-byvh1pw056] .go-next, [b-byvh1pw056] .go-previous, [b-byvh1pw056] .go-last
{
    width: 32px;
    border: 1px solid #fefefe;
    background-color: var(--site-secondary, #F7A711) !important;
    border-radius: var(--bs-border-radius) !important;
}
[b-byvh1pw056] .pagination-text
{
    font-size: inherit;
    text-align: center;
}

[b-byvh1pw056]
.quickgrid[theme=default]
{
    --col-gap: 1px;
}


@media (min-width: 300px)
{
    [b-byvh1pw056]
    .pagination-text
    {
        width: 85px;
    }
}
@media (min-width: 325px)
{
    [b-byvh1pw056]
    .pagination-text
    {
        width: 140px;
        font-size: 15px;
    }
}
@media (min-width: 425px)
{
    [b-byvh1pw056]
    .pagination-text
    {
        width: 200px;
    }
}

@media (min-width: 768px)
{
    [b-byvh1pw056] .go-first, [b-byvh1pw056] .go-next, [b-byvh1pw056] .go-previous, [b-byvh1pw056] .go-last
    {
        width: 75px;
        height: 40px;
    }

    [b-byvh1pw056]
    .pagination-text
    {
        width: 350px;
        font-size: 18px;
    }
}

/* /Components/UI/Timesheets/TimesheetStatusList.razor.rz.scp.css */
[b-v70e7k7jgx] .timesheet-status-list-dropdown 
{
    color: red;
}
/* /Components/UI/Timesheets/TimesheetTimeEdit.razor.rz.scp.css */
.timesheet-edittime-invalid[b-2b3e0qxj4o] {
    color:red;
    background-color:#f6b9b9;
}
.timesheet-edittime-timepicker-combobox[b-2b3e0qxj4o]
{
/*    position: relative;
    top: -45px;
*/    
}
/* /Components/UI/Timesheets/TimesheetUDF.razor.rz.scp.css */
.timesheet-udf-dropdownlist[b-0c4wytf0tp]
{
    /*border: 1px solid #ced4da;*/
}
/* /Pages/AdminPermissions.razor.rz.scp.css */
[b-cocdoydhd9]
.dxcheckbox
{
    font-size: 1.25rem !important;
}

[b-cocdoydhd9]
.dxbl-checkbox.dxbl-checkbox-switch.dxbl-checkbox-checked div.dxbl-checkbox-check-element
{
    background-color: green;
}

[b-cocdoydhd9]
.dxbl-checkbox.valid.modified:not([type="checkbox"]).dxbl-checkbox-switch.dxbl-checkbox-unchecked div.dxbl-checkbox-check-element
{
    background-color: #ffc107;
}
[b-cocdoydhd9]
.dxbl-checkbox.dxbl-checkbox-switch.dxbl-checkbox-unchecked div.dxbl-checkbox-check-element
{
    background-color: gray;
}

[b-cocdoydhd9]
.dxbl-dropdown, .dxbl-itemlist-dropdown[b-cocdoydhd9]
{
    font-size: 2.25rem !important;
}

/* /Pages/AutoApprove.razor.rz.scp.css */
/* AutoApprove.razor.css - Scoped styles for the auto-approve page */

.auto-approve-pending[b-u0ihqarr8i],
.auto-approve-results[b-u0ihqarr8i] {
    max-width: 1200px;
    margin: 0 auto;
}
/* /Pages/Configuration.razor.rz.scp.css */
/* Configuration page styles */

.config-container[b-bpgj24olyn] {
    max-width: 800px;
}

.test-row[b-bpgj24olyn] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.test-row + .test-row[b-bpgj24olyn] {
    border-top: 1px solid var(--bs-border-color-translucent, rgba(0,0,0,0.08));
}

.email-test-row[b-bpgj24olyn] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

[b-bpgj24olyn] .test-button {
    min-width: 220px;
    flex-shrink: 0;
}

.email-input-wrapper[b-bpgj24olyn] {
    flex: 1;
    max-width: 300px;
}

.result-message[b-bpgj24olyn] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.result-success[b-bpgj24olyn] {
    color: var(--bs-success);
    background-color: var(--bs-success-bg-subtle, #d1e7dd);
}

.result-warning[b-bpgj24olyn] {
    color: var(--bs-warning-text-emphasis, #997404);
    background-color: var(--bs-warning-bg-subtle, #fff3cd);
}

.result-error[b-bpgj24olyn] {
    color: var(--bs-danger);
    background-color: var(--bs-danger-bg-subtle, #f8d7da);
}

.validation-error[b-bpgj24olyn] {
    font-size: 0.8125rem;
    color: var(--bs-danger);
    margin-top: 4px;
}
/* /Pages/EmailPendingApprovals.razor.rz.scp.css */
/* Page-specific styles for EmailPendingApprovals */

.btn-send-all[b-oupei0b5n9] {
    padding: 8px 20px;
    border: 1px solid var(--site-primary, #51215c);
    border-radius: 6px;
    background-color: transparent;
    color: var(--site-primary, #51215c);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.15s, color 0.15s;
}

.btn-send-all:hover:not(:disabled)[b-oupei0b5n9] {
    background-color: var(--site-primary, #51215c);
    color: white;
}

.btn-send-all:hover:not(:disabled) img[b-oupei0b5n9] {
    filter: brightness(0) invert(1);
}

.btn-send-all:disabled[b-oupei0b5n9] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-send-all img[b-oupei0b5n9] {
    width: 16px;
    height: 16px;
}

[b-oupei0b5n9] .notify-btn {
    padding: 8px;
    border-radius: 6px;
}

[b-oupei0b5n9] .notify-btn:hover:not(:disabled) {
    background-color: var(--bs-primary-bg-subtle, #f0e6ff);
}

[b-oupei0b5n9] .notify-btn img {
    width: 28px;
    height: 28px;
}
/* /Pages/HomePendingApprovals.razor.rz.scp.css */
.home-approvals-container[b-4nn5nnsoyi]
{
    margin-top: 142px;
    margin-bottom: 200px;
}
[b-4nn5nnsoyi] .approval-options-dropdown
{
    width: 200px !important;
    font-size: 18px;
    border: none !important;
    /*margin-bottom: -10px !important;*/
}
.pending-approvals-toolbar-item[b-4nn5nnsoyi]
{
    padding: 10px !important;
}
/* /Pages/Index.razor.rz.scp.css */
.flex-container[b-iylj7aiw6m] {
    /* We first create a flex layout context */
    display: flex;
    /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
    flex-flow: row wrap;
    /* Then we define how is distributed the remaining space */
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.flex-item[b-iylj7aiw6m] {
    padding: 0px !important;
    width: 140px;
    height: 120px;
    margin: 0px !important;
    text-align: center;
    border: 0px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.flex-item:hover[b-iylj7aiw6m] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link svg[b-iylj7aiw6m] {
    height: 35px;
    width: 75px;
    color: var(--site-primary-light, #804D99);
    margin-bottom: 15px;
}

/* Desktop welcome header */
.desktop-welcome-header[b-iylj7aiw6m] {
    background: linear-gradient(135deg, var(--site-primary, #51215c) 0%, var(--site-primary-lighter, #9774d5) 100%);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.welcome-content[b-iylj7aiw6m] {
    max-width: 600px;
}

.welcome-title[b-iylj7aiw6m] {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.welcome-title .oi[b-iylj7aiw6m] {
    color: #ffc107;
}

.welcome-subtitle[b-iylj7aiw6m] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 0;
}

/* Home content area */
.home-content[b-iylj7aiw6m] {
    padding: 0;
}

/* Mobile adjustments */
.home-page-container[b-iylj7aiw6m] {
    margin-top: 220px;
}

[b-iylj7aiw6m] a {
    color: #76488d !important;
    font-weight: bold !important;
}

/* Section headers */
.home-content h5[b-iylj7aiw6m] {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flex-container[b-iylj7aiw6m] {
        justify-content: center;
    }
    
    .flex-item[b-iylj7aiw6m] {
        width: 130px;
        height: 110px;
    }
}

@media (min-width: 1024px) {
    .home-content[b-iylj7aiw6m] {
        max-width: 100%;
    }
    
    .flex-container[b-iylj7aiw6m] {
        justify-content: flex-start;
    }
}
/* /Pages/LocalizationsSettings.razor.rz.scp.css */


@media (max-width:576px)
{
    .localizations-languages-dropdown-container[b-ay142sdcju]
    {
        position: fixed;
        bottom: 37px;
        left: 0;
        z-index: 1;
    }
    .localizations-settings-dropdown-container[b-ay142sdcju]
    {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1;
    }
    .localizations-settings-container[b-ay142sdcju]
    {
        margin-bottom: 75px;
    }
}
/* /Pages/NotificationsSetup.razor.rz.scp.css */
.NotificationEditor div[b-f4acqadgoz] {
    margin-top: 6px;
}

#NotificationSetupEditor table.Detail[b-f4acqadgoz] {
    margin-left: 40px;
}

.NotificationEditor #NotificationSetupEditor .field-head[b-f4acqadgoz] {
    color: Black;
    font-weight: normal;
}

.NotificationEditor #NotificationSetupEditor .Main[b-f4acqadgoz] {
    display: none;
}

.indent1[b-f4acqadgoz] {
    padding-left: .25in;
}

.textBox[b-f4acqadgoz] {
    font-family: Tahoma, Arial;
    font-size: 8pt;
}

.DDL[b-f4acqadgoz] {
    font-family: Tahoma, Arial;
    font-size: 8pt;
}

.checkBox[b-f4acqadgoz] {
}
/* /Pages/Password.razor.rz.scp.css */
.update-password-container[b-x8rfiebzon]
{
    margin-top: 250px;
    margin-bottom: 70px;
}
.row[b-x8rfiebzon]
{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    justify-content: center !important;
}
/* /Pages/PenaltyPayInquiry.razor.rz.scp.css */
/* PenaltyPayInquiry - filter layout */

.filter-section[b-v59dl8bd2z] {
    background-color: var(--bs-body-bg);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.filter-row[b-v59dl8bd2z] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-item[b-v59dl8bd2z] {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 300px;
}

.filter-label[b-v59dl8bd2z] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--site-primary, #51215c);
    margin-bottom: 4px;
}

.selection-display-row[b-v59dl8bd2z] {
    display: flex;
    gap: 24px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--bs-border-color);
}

.selection-display-item[b-v59dl8bd2z] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.selection-display-label[b-v59dl8bd2z] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bs-body-color);
}

.selection-display-value[b-v59dl8bd2z] {
    font-size: 0.8125rem;
    color: var(--bs-secondary-color);
}
/* /Pages/Preferences.razor.rz.scp.css */
.preferences-container[b-jmh7cuu3ei]
{
    margin-top: 223px;
}

.preferences-row[b-jmh7cuu3ei]
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.preferences-linkitem[b-jmh7cuu3ei]
{
    margin: 25px;
    padding: 10px;
    max-width: 226px;
}
/* /Pages/SendPasswordReset.razor.rz.scp.css */
.reset-password-container[b-dy3db6tr7q]
{
    margin-top: 192px;
}
/* /Pages/Settings.razor.rz.scp.css */
.pa-invalid[b-7j31511w50]
{
    border-left: 3px solid #b3000c !important;
    border-radius: .3rem;
}
/* /Pages/TempReminders.razor.rz.scp.css */
/* Page-specific styles for TempReminders — mirrors EmailPendingApprovals */

.btn-send-all[b-x82af4y7m8] {
    padding: 8px 20px;
    border: 1px solid var(--site-primary, #51215c);
    border-radius: 6px;
    background-color: transparent;
    color: var(--site-primary, #51215c);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.15s, color 0.15s;
}

.btn-send-all:hover:not(:disabled)[b-x82af4y7m8] {
    background-color: var(--site-primary, #51215c);
    color: white;
}

.btn-send-all:hover:not(:disabled) img[b-x82af4y7m8] {
    filter: brightness(0) invert(1);
}

.btn-send-all:disabled[b-x82af4y7m8] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-send-all img[b-x82af4y7m8] {
    width: 16px;
    height: 16px;
}
/* /Pages/TimesheetDetail.razor.rz.scp.css */
.timesheet-detail-container[b-ff8nbdo6de]
{
    margin-top: 218px;
    margin-bottom: 175px;
    max-width: var(--timesheets-max-width);
    padding: 0px 0px 100px 0px;
}

[b-ff8nbdo6de] .dxbl-row
{
    margin-top: 0px !important;
    margin-left: 0px !important;
    margin-bottom: 0px !important;
    margin-right: 0px !important;
}

/* Enlarge the Assignment DxComboBox to match the native .form-select Pay Type
   dropdown (48px tall, site-primary text, #b8b8b8 border) used elsewhere on mobile. */
[b-ff8nbdo6de] .assignment-combo
{
    min-height: 48px;
    border: 1px solid #b8b8b8 !important;
    border-radius: 0.375rem;
    color: var(--site-primary, #51215C);
}

[b-ff8nbdo6de] .assignment-combo .dxbl-edit-inputgroup
{
    min-height: 46px;
}

[b-ff8nbdo6de] .assignment-combo input
{
    color: var(--site-primary, #51215C);
    font-size: 1rem;
    padding-left: 2.5rem;
}

/* /Pages/TimesheetInquiry.razor.rz.scp.css */
.timesheet-inquiry-container[b-1rnw0tt6b5]
{
    margin-top: 55px;
    margin-bottom: 200px;
    padding: 5px;
    /*max-width: var(--timesheets-max-width);*/
}

.timesheet-inquiry-footer[b-1rnw0tt6b5] {
    max-width: var(--application-max-width);
    margin: auto;
}

/* /Pages/TimesheetSearch.razor.rz.scp.css */
.timesheet-inquiry-container[b-1ntpx0pug7]
{
    margin-top: 55px;
    margin-bottom: 200px;
    padding: 5px;
    /*max-width: var(--timesheets-max-width);*/
}

.timesheet-inquiry-footer[b-1ntpx0pug7] {
    max-width: var(--application-max-width);
    margin: auto;
}
/* /Pages/UpdateSubmittedAsExported.razor.rz.scp.css */
/* UpdateSubmittedAsExported - button styling */

.btn-mark-exported[b-oqkr3axqhn] {
    padding: 8px 20px;
    border: 1px solid var(--site-primary, #51215c);
    border-radius: 6px;
    background-color: transparent;
    color: var(--site-primary, #51215c);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.15s, color 0.15s;
}

.btn-mark-exported:hover:not(:disabled)[b-oqkr3axqhn] {
    background-color: var(--site-primary, #51215c);
    color: white;
}

.btn-mark-exported:disabled[b-oqkr3axqhn] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* /Pages/UserList.razor.rz.scp.css */
/* UserList page styles */

/* ===== Toolbar ===== */
.action-toolbar-container[b-0bd6f283g8] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.btn-action[b-0bd6f283g8] {
    padding: 7px 18px;
    border: 1px solid var(--bs-border-color);
    border-radius: 6px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.btn-action.btn-primary[b-0bd6f283g8] {
    border-color: var(--site-primary, #51215c);
    color: var(--site-primary, #51215c);
    background-color: transparent;
}

.btn-action.btn-primary:hover:not(:disabled)[b-0bd6f283g8] {
    background-color: var(--site-primary, #51215c);
    color: white;
}

.btn-action.btn-secondary[b-0bd6f283g8] {
    border-color: var(--bs-border-color);
    color: var(--bs-secondary-color);
}

.btn-action.btn-secondary:hover:not(:disabled)[b-0bd6f283g8] {
    background-color: var(--bs-tertiary-bg, #f1f3f5);
    border-color: var(--bs-secondary-color);
}

.btn-action:disabled[b-0bd6f283g8] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Grid action buttons ===== */
[b-0bd6f283g8] .action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

[b-0bd6f283g8] .action-btn {
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.15s, color 0.15s;
}

[b-0bd6f283g8] .action-btn.btn-success {
    background-color: var(--bs-success-bg-subtle, #d1e7dd);
    color: var(--bs-success-text-emphasis, #0a3622);
    border-color: var(--bs-success-border-subtle, #a3cfbb);
}

[b-0bd6f283g8] .action-btn.btn-success:hover:not(:disabled) {
    background-color: var(--bs-success);
    color: white;
}

[b-0bd6f283g8] .action-btn.btn-primary {
    background-color: var(--site-primary-lighter, #c9a8d2);
    color: var(--site-primary-dark, #3d1847);
    border-color: var(--site-primary-light, #89359c);
}

[b-0bd6f283g8] .action-btn.btn-primary:hover:not(:disabled) {
    background-color: var(--site-primary, #51215c);
    color: white;
}

[b-0bd6f283g8] .action-btn.btn-outline-secondary {
    background-color: transparent;
    color: var(--bs-secondary-color);
    border-color: var(--bs-border-color);
}

[b-0bd6f283g8] .action-btn.btn-outline-secondary:hover:not(:disabled) {
    background-color: var(--bs-tertiary-bg, #f1f3f5);
    color: var(--bs-body-color);
}

/* ===== User type badges ===== */
[b-0bd6f283g8] .user-type-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

[b-0bd6f283g8] .type-temp {
    background-color: #e8f4fd;
    color: #0c5dab;
}

[b-0bd6f283g8] .type-approver {
    background-color: #f0e6ff;
    color: #5a2d82;
}

[b-0bd6f283g8] .type-blanket-approver {
    background-color: #f5e6ff;
    color: #6b21a8;
}

[b-0bd6f283g8] .type-blanket-temp {
    background-color: #e0f2fe;
    color: #075985;
}

[b-0bd6f283g8] .type-admin {
    background-color: #fef3c7;
    color: #92400e;
}

[b-0bd6f283g8] .type-secondary {
    background-color: #e0e7ff;
    color: #3730a3;
}

[b-0bd6f283g8] .type-super {
    background-color: #fce7f3;
    color: #9d174d;
}

/* ===== Status indicators ===== */
[b-0bd6f283g8] .status-enabled {
    color: var(--bs-success);
    font-weight: 600;
}

[b-0bd6f283g8] .status-disabled {
    color: var(--bs-danger);
    font-weight: 600;
}

[b-0bd6f283g8] .email-cell {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

/* ===== Edit form (popup) ===== */
.edit-form-container[b-0bd6f283g8] {
    padding: 8px 4px;
}

.edit-form-row[b-0bd6f283g8] {
    margin-bottom: 14px;
}

.edit-form-label[b-0bd6f283g8] {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-primary, #51215c);
    margin-bottom: 4px;
}

.edit-form-input[b-0bd6f283g8] {
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 0.875rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    transition: border-color 0.15s;
}

.edit-form-input:focus[b-0bd6f283g8] {
    outline: none;
    border-color: var(--site-primary, #51215c);
    box-shadow: 0 0 0 2px var(--site-primary-lighter, rgba(81,33,92,0.15));
}

.edit-form-input.is-invalid[b-0bd6f283g8] {
    border-color: var(--bs-danger);
}

.edit-form-error[b-0bd6f283g8] {
    color: var(--bs-danger);
    font-size: 0.8125rem;
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: var(--bs-danger-bg-subtle, #f8d7da);
    border-radius: 4px;
}

.edit-form-buttons[b-0bd6f283g8] {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--bs-border-color);
}

.edit-form-btn[b-0bd6f283g8] {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.15s, color 0.15s;
}

.edit-form-btn.btn-update[b-0bd6f283g8] {
    background-color: var(--site-primary, #51215c);
    color: white;
    border: 1px solid var(--site-primary, #51215c);
}

.edit-form-btn.btn-update:hover:not(:disabled)[b-0bd6f283g8] {
    opacity: 0.85;
}

.edit-form-btn.btn-update:disabled[b-0bd6f283g8] {
    opacity: 0.5;
    cursor: not-allowed;
}

.edit-form-btn.btn-reset[b-0bd6f283g8] {
    background-color: transparent;
    color: var(--bs-warning-text-emphasis, #997404);
    border: 1px solid var(--bs-warning, #ffc107);
}

.edit-form-btn.btn-reset:hover:not(:disabled)[b-0bd6f283g8] {
    background-color: var(--bs-warning-bg-subtle, #fff3cd);
}

.edit-form-btn.btn-cancel[b-0bd6f283g8] {
    background-color: transparent;
    color: var(--bs-secondary-color);
    border: 1px solid var(--bs-border-color);
}

.edit-form-btn.btn-cancel:hover[b-0bd6f283g8] {
    background-color: var(--bs-tertiary-bg, #f1f3f5);
}

/* ===== Add User form (popup) ===== */
.add-user-container[b-0bd6f283g8] {
    padding: 0 4px;
}

.add-user-header[b-0bd6f283g8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.add-user-header-buttons[b-0bd6f283g8] {
    display: flex;
    gap: 8px;
}

.add-user-btn[b-0bd6f283g8] {
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.15s, color 0.15s;
}

.add-user-btn.btn-add[b-0bd6f283g8] {
    background-color: var(--site-primary, #51215c);
    color: white;
    border: 1px solid var(--site-primary, #51215c);
}

.add-user-btn.btn-add:hover:not(:disabled)[b-0bd6f283g8] {
    opacity: 0.85;
}

.add-user-btn.btn-add:disabled[b-0bd6f283g8] {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-user-btn.btn-cancel[b-0bd6f283g8] {
    background-color: transparent;
    color: var(--bs-secondary-color);
    border: 1px solid var(--bs-border-color);
}

.add-user-btn.btn-cancel:hover:not(:disabled)[b-0bd6f283g8] {
    background-color: var(--bs-tertiary-bg, #f1f3f5);
}

.add-user-error[b-0bd6f283g8] {
    color: var(--bs-danger);
    font-size: 0.8125rem;
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: var(--bs-danger-bg-subtle, #f8d7da);
    border-radius: 4px;
}

.add-user-type-selector[b-0bd6f283g8] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bs-border-color);
}

.add-user-type-btn[b-0bd6f283g8] {
    padding: 8px 18px;
    border: 1px solid var(--bs-border-color);
    border-radius: 20px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.add-user-type-btn:hover:not(:disabled):not(.selected)[b-0bd6f283g8] {
    border-color: var(--site-primary, #51215c);
    color: var(--site-primary, #51215c);
}

.add-user-type-btn.selected[b-0bd6f283g8] {
    background-color: var(--site-primary, #51215c);
    border-color: var(--site-primary, #51215c);
    color: white;
}

.add-user-type-btn:disabled[b-0bd6f283g8] {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-user-title[b-0bd6f283g8] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--site-primary, #51215c);
    margin-bottom: 16px;
}

.add-user-body[b-0bd6f283g8] {
    padding: 0 4px;
}

.add-user-form-row[b-0bd6f283g8] {
    margin-bottom: 14px;
}

.add-user-label[b-0bd6f283g8] {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-primary, #51215c);
    margin-bottom: 4px;
}

.add-user-input[b-0bd6f283g8] {
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 0.875rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    transition: border-color 0.15s;
}

.add-user-input:focus[b-0bd6f283g8] {
    outline: none;
    border-color: var(--site-primary, #51215c);
    box-shadow: 0 0 0 2px var(--site-primary-lighter, rgba(81,33,92,0.15));
}
/* /Pages/UserNotificationManagement.razor.rz.scp.css */
/* UserNotificationManagement - button styling */

[b-xyr84qkmz2] .action-buttons {
    display: flex;
    justify-content: center;
    gap: 4px;
}

[b-xyr84qkmz2] .btn-action-icon {
    background: none;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--bs-body-color);
    font-size: 0.875rem;
    transition: background-color 0.15s, color 0.15s;
}

[b-xyr84qkmz2] .btn-action-icon:hover {
    background-color: var(--bs-tertiary-bg, #f1f3f5);
}

[b-xyr84qkmz2] .btn-edit-icon:hover {
    color: var(--site-primary, #51215c);
}

[b-xyr84qkmz2] .btn-delete-icon:hover {
    color: var(--bs-danger);
}
/* /Pages/UsersNew.razor.rz.scp.css */
[b-a0m7859vrx]
.validation-message
{
    color: red;
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.row[b-a0m7859vrx]
{
    /*margin-bottom: .90rem;*/
}

.form-control[b-a0m7859vrx]
{
    height: 2.4rem;
}
[b-a0m7859vrx]
form-label
{
    font-size: 1.2rem !important;
}
/* /Pages/WebtimeError.razor.rz.scp.css */
@media (min-width: 576px)
{
    .fixed-bottom[b-7uvr48dv9k]
    {
        position: relative;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-6cclzfd4qx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6cclzfd4qx] {
    flex: 1;
}

.sidebar[b-6cclzfd4qx] {
    background-color: #ffffff;
}

.top-row[b-6cclzfd4qx] {
    background-color: #ffffff;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6cclzfd4qx]  a, .top-row .btn-link[b-6cclzfd4qx] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-6cclzfd4qx] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-6cclzfd4qx] {
        display: none;
    }

    .top-row.auth[b-6cclzfd4qx] {
        justify-content: space-between;
    }

    .top-row a[b-6cclzfd4qx], .top-row .btn-link[b-6cclzfd4qx] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6cclzfd4qx] {
        flex-direction: row;
    }

    .sidebar[b-6cclzfd4qx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        z-index: 1031; /* Above fixed-top header (Bootstrap z-index: 1030) */
    }

    .top-row[b-6cclzfd4qx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-6cclzfd4qx], article[b-6cclzfd4qx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-y2kiqnp4nk] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-y2kiqnp4nk] {
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar[b-y2kiqnp4nk] {
    padding-left: 4px !important;
    padding-right: 4px !important;
    box-shadow: none;
    border-bottom: 1px solid #d6d5d5;
}

    .navbar .container-fluid[b-y2kiqnp4nk] {
        padding-left: 0px;
        padding-right: 0px;
    }

    .navbar-brand[b-y2kiqnp4nk] {
        font-size: 1.1rem;
    }

.nav-logo[b-y2kiqnp4nk] {
    width: 120px;
    cursor:pointer;
}

.oi[b-y2kiqnp4nk] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-y2kiqnp4nk] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-y2kiqnp4nk] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-y2kiqnp4nk] {
    padding-bottom: 1rem;
}

.nav-item[b-y2kiqnp4nk]  a {
    color: rgba(128, 77, 153, 1);
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item[b-y2kiqnp4nk]  a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(128, 77, 153, 1);
}

.nav-item[b-y2kiqnp4nk]  a:hover {
    background-color: rgba(128, 77, 153, 1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-y2kiqnp4nk] {
        display: none;
    }

    .collapse[b-y2kiqnp4nk] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* /Shared/NavMenuOffCanvas.razor.rz.scp.css */
.webtime-menu-toggler[b-bdo6jvhtfg]
{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='white' d='M0 1v1h8V1zm0 2.97v1h8v-1zm0 3v1h8v-1z'/%3E%3C/svg%3E");
}
.navmenu-nav-item[b-bdo6jvhtfg]
{
    padding-top: 2.5px;
    padding-bottom: 2.5px;
}
[b-bdo6jvhtfg] .nav-link
{
    color:black !important;
    font-size: 1.2rem;
}
.oi[b-bdo6jvhtfg], .bi[b-bdo6jvhtfg]
{
    color: black;
    margin-right:0.5rem;
}
.btn-close[b-bdo6jvhtfg]
{
    margin-right:25px;
}

@media (max-width: 768px)
{

    .navmenu-nav-item[b-bdo6jvhtfg]
    {
        font-size: 1.35em !important;
    }

}
@media (max-width: 991px)
{

    .main-navbar[b-bdo6jvhtfg]
    {
        margin-left: 80%;
    }

    .offcanvas[b-bdo6jvhtfg]
    {
        transform: translateX(400px);
        transition: transform 0.2s ease-in-out;
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

        .offcanvas.show[b-bdo6jvhtfg]
        {
            transform: translateX(0);
            max-width: 360px;
            width: 85%;
        }

    .navmenu-logout-link[b-bdo6jvhtfg]
    {
        position: fixed;
        bottom: 0;
        z-index: 1030;
        background-color: var(--site-primary-light, #804D99);
        padding: 10px;
        width: 100%;
        border-bottom-left-radius: .25rem !important;
        border-bottom-right-radius: .25rem !important;
    }

    .navmenu-logout-link-caption[b-bdo6jvhtfg]
    {
        color: white !important;
        font-size: 1.35em !important;
    }

    .navmenu-logout-link-right[b-bdo6jvhtfg]
    {
        display:none;
    }
    .nav-logo[b-bdo6jvhtfg]
    {
        display: none;
    }
}
@media (min-width: 992px)
{
    [b-bdo6jvhtfg] .nav-link, .oi[b-bdo6jvhtfg], .bi[b-bdo6jvhtfg]
    {
        color: white !important;
        font-size: 1.1em;
    }

    .navmenu-logout-link-right[b-bdo6jvhtfg]
    {
        font-size:1.2rem;
    }
    
    /*hide the menu logout link*/
    .navmenu-logout-link[b-bdo6jvhtfg]
    {
        display:none;
    }
    .nav-item[b-bdo6jvhtfg]
    {
        font-size:1.em;
        text-wrap:nowrap;
    }

}

@media (min-width: 1200px)
{

    .nav-item[b-bdo6jvhtfg]
    {
        font-size: 1.3em;
        text-wrap: nowrap;
    }
    .navmenu-logout-link-right[b-bdo6jvhtfg]
    {
        font-size: 1.4rem;
    }
}
