@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/ow.web.giic/Pages/Dashboard.razor.rz.scp.css */
/* --- Base Container --- */
.dashboard-container[b-echbppv2bl] {
    padding: 1.5rem;
    background-color: #f8f9fa; /* A very light gray background */
}

/* --- Stat Card General Styling --- */
.stat-card[b-echbppv2bl] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    overflow: hidden;
    position: relative;
    color: #fff;
}

    .stat-card:hover[b-echbppv2bl] {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .stat-card .card-body[b-echbppv2bl] {
        padding: 1.5rem;
        position: relative;
        z-index: 2;
    }

    /* Add a pseudo-element for a subtle background pattern/icon */
    .stat-card[b-echbppv2bl]::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 0.5;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .stat-card:hover[b-echbppv2bl]::before {
        transform: scale(1.2);
    }

.stat-card-content[b-echbppv2bl] {
    text-align: right;
}

.stat-card-value[b-echbppv2bl] {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.stat-card-title[b-echbppv2bl] {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Card Color Themes --- */
.card-theme-blue[b-echbppv2bl] {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}
/* Primary Blue */
.card-theme-orange[b-echbppv2bl] {
    background: linear-gradient(135deg, #0dcaf0, #0aa3bf);
}
/* Cyan Blue */
.card-theme-purple[b-echbppv2bl] {
    background: linear-gradient(135deg, #4C6EF5, #3B5BDB);
}
/* Indigo Blue */
.card-theme-red[b-echbppv2bl] {
    background: linear-gradient(135deg, #34495E, #2C3E50);
}
/* Slate Blue */


/* --- Chart Card Styling --- */
.chart-card[b-echbppv2bl] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .chart-card .card-body[b-echbppv2bl] {
        padding: 1.5rem;
    }

    .chart-card .card-footer[b-echbppv2bl] {
        background-color: #f8f9fa;
        border-top: 1px solid #e9edf3;
        padding: 0.75rem 1.5rem;
        text-align: right;
    }

/* --- Chart Tooltip --- */
.chart-tooltip[b-echbppv2bl] {
    padding: 0.5rem 0.75rem;
    background-color: #343a40;
    color: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .dashboard-container[b-echbppv2bl] {
        padding: 1rem;
    }

    .stat-card-value[b-echbppv2bl] {
        font-size: 2.5rem;
    }
}
/* _content/ow.web.giic/Pages/Login.razor.rz.scp.css */
/* _content/ow.web.giic/Shared/Layout/Header.razor.rz.scp.css */
/* --- Base Header Wrapper --- */
.header-modern-light[b-zugs3dxr53] {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--rz-gray-200, #e9edf3);
    padding: 0 1rem;
    height: 60px;
    display: flex;
    align-items: center;
}

/* --- Design Tokens (Variables) --- */
.header-modern-light[b-zugs3dxr53] {
    --ow-text-primary: #182233;
    --ow-text-secondary: #5a6679;
    --ow-border-color: #e9edf3;
    --ow-surface-hover: #f8f9fa;
    --ow-item-radius: 8px;
}

    /* --- DevExpress Menu Customization --- */
    .header-modern-light[b-zugs3dxr53]  .app-header {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        height: 100%;
        width: 100%;
    }

    /* --- Menu Title --- */
    .header-modern-light[b-zugs3dxr53]  .dxbl-menu-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--ow-text-primary);
        white-space: nowrap;
        margin-right: 1.5rem;
    }

    /* --- General Menu Item Styling --- */
    .header-modern-light[b-zugs3dxr53]  .dxbl-menu-item {
        margin: 0 2px;
    }

        .header-modern-light[b-zugs3dxr53]  .dxbl-menu-item .dxbl-menu-item-link {
            padding: 8px 12px;
            font-size: 14px;
            border-radius: var(--ow-item-radius);
            color: var(--ow-text-secondary);
            transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
            border: 1px solid transparent;
        }

    .header-modern-light[b-zugs3dxr53]  .dxbl-menu-item-link:hover {
        background-color: var(--ow-surface-hover);
        color: var(--ow-text-primary);
    }

    /* --- Icons within Menu Items --- */
    .header-modern-light[b-zugs3dxr53]  .dxbl-menu-item-link .dxbl-icon {
        font-size: 16px;
        color: var(--ow-text-secondary);
        transition: color 0.2s ease-in-out;
    }

    .header-modern-light[b-zugs3dxr53]  .dxbl-menu-item-link:hover .dxbl-icon {
        color: var(--ow-text-primary);
    }


    /* --- Icon-Only Buttons (like the sidebar toggle) --- */
    .header-modern-light[b-zugs3dxr53]  .icon-only .dxbl-menu-item-link {
        padding: 8px;
    }

    /* --- User Menu Specifics --- */
    .header-modern-light[b-zugs3dxr53]  .user-menu .dxbl-menu-item-link {
        font-weight: 500;
        color: var(--ow-text-primary);
    }

    /* --- Dropdown Panel --- */
    .header-modern-light[b-zugs3dxr53]  .dxbl-dropdown {
        border: 1px solid var(--ow-border-color);
        border-radius: var(--ow-item-radius);
        box-shadow: 0 8px 24px rgba(24, 34, 51, 0.08);
        margin-top: 8px;
        overflow: hidden;
    }

        .header-modern-light[b-zugs3dxr53]  .dxbl-dropdown .dxbl-menu-item-link {
            font-size: 14px;
            padding: 10px 14px;
            border-radius: 0; /* Let the dropdown container handle radius */
        }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .header-modern-light[b-zugs3dxr53] {
        padding: 0 0.5rem;
    }

        .header-modern-light[b-zugs3dxr53]  .dxbl-menu-title {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* On smaller screens, hide the username in the user menu, showing only the icon */
        .header-modern-light[b-zugs3dxr53]  .user-menu .dxbl-menu-item-text {
            display: none;
        }

        .header-modern-light[b-zugs3dxr53]  .user-menu .dxbl-menu-item-link {
            padding: 8px;
        }
}
/* _content/ow.web.giic/Shared/Layout/MainLayout.razor.rz.scp.css */
.page[b-dtuprpwnr7] {
    height: 100%;
    overflow: hidden;
}

[b-dtuprpwnr7] .content {
    padding: 1.1rem 2rem 0 2rem;
    overflow: auto;
}

@media (max-width: 1199.98px) {
    [b-dtuprpwnr7] .page-layout > .dx-gridlayout-root {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

[b-dtuprpwnr7] .fit-width {
    max-width: 100%;
}

[b-dtuprpwnr7] .mw-1100 {
    max-width: 1100px;
}
/* _content/ow.web.giic/Shared/Layout/NavMenu.razor.rz.scp.css */
/* --- Base Sidebar Container --- */
.sidebar[b-q4wrbupx2u] {
    width: 280px;
    min-width: 280px;
    background-color: #ffffff;
    border-right: 1px solid #e9edf3;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

    /* --- Collapsed State for the Sidebar --- */
    .sidebar.collapse[b-q4wrbupx2u] {
        min-width: 0;
        width: 0;
        transform: translateX(-280px);
        border-right: none;
    }

/* --- TreeView Main Component Styling --- */
[b-q4wrbupx2u] .app-sidebar {
    padding: 1rem 0.75rem;
    border: none;
    background: transparent;
}

    /* --- General Style for Each Navigation Node --- */
    [b-q4wrbupx2u] .app-sidebar .dxbl-treeview-node-content {
        padding: 10px 12px;
        border-radius: 8px;
        color: #5a6679; /* Soft text color for inactive items */
        font-weight: 500;
        font-size: 14px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        /* --- Hover Effect for Nodes --- */
        [b-q4wrbupx2u] .app-sidebar .dxbl-treeview-node-content:hover {
            background-color: #f8f9fa; /* Subtle highlight on hover */
            color: #182233; /* Darker text on hover */
        }

    /* --- Style for the Currently Selected/Active Node --- */
    [b-q4wrbupx2u] .app-sidebar .dxbl-treeview-node-selected > .dxbl-treeview-node-content {
        background-color: #f0f5ff; /* A light blue to indicate selection */
        color: #2f54eb; /* A strong blue for the active item text */
        font-weight: 600;
    }

        [b-q4wrbupx2u] .app-sidebar .dxbl-treeview-node-selected > .dxbl-treeview-node-content .dxbl-treeview-item-icon {
            color: #2f54eb; /* Match the icon color to the text color on active */
        }

    /* --- Icon Styling --- */
    [b-q4wrbupx2u] .app-sidebar .dxbl-treeview-item-icon {
        font-size: 16px;
        width: 20px;
        margin-right: 14px;
        text-align: center;
        color: #8c96a5; /* A neutral gray for icons */
        transition: color 0.2s ease;
    }

    /* --- Styling for Top-Level Parent Nodes (Category Headers) --- */
    /* This targets nodes that are at level 1 and have children */
    [b-q4wrbupx2u] .app-sidebar > .dxbl-treeview-nodes-container > .dxbl-treeview-node-container > .dxbl-treeview-node[aria-level="1"][aria-expanded] > .dxbl-treeview-node-content {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #8c96a5;
        padding-top: 16px;
        padding-bottom: 8px;
        background-color: transparent !important; /* Headers should not highlight */
    }

        /* Headers don't need hover effects */
        [b-q4wrbupx2u] .app-sidebar > .dxbl-treeview-nodes-container > .dxbl-treeview-node-container > .dxbl-treeview-node[aria-level="1"][aria-expanded] > .dxbl-treeview-node-content:hover {
            color: #8c96a5;
        }


/* --- Loading Message --- */
.sidebar-loading[b-q4wrbupx2u] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    color: #8c96a5;
    font-style: italic;
}


/* --- Responsive Adjustments for Mobile/Tablet --- */
@media (max-width: 1199.98px) {
    .sidebar[b-q4wrbupx2u] {
        position: fixed;
        left: 0;
        top: 60px; /* Assumes header height is 60px */
        height: calc(100% - 60px);
        z-index: 1010;
        transform: translateX(-100%);
    }

        .sidebar.expand[b-q4wrbupx2u] {
            transform: translateX(0);
            box-shadow: 0 8px 24px rgba(24, 34, 51, 0.15); /* Add shadow when it overlays content */
        }
}
