@import '/_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css';

:root {
    --app-header-height: 110px; /* adjust to your header’s actual height */
    --app-footer-height: 0px; /* adjust to your footer’s actual height */
}


/*@media (prefers-color-scheme: dark) {
  :root {
    --neutral-foreground-rest: rgb(26, 26, 26);*/
    /* dark-mode overrides */
  /*}
}*/

h1[tabindex="-1"]:focus,
h1:focus {
    outline: none;
}


#outer-splitter-host,
#outer-splitter-host > .k-splitter,
#outer-splitter-host > .k-splitter > .k-pane {
    min-height: 0;
    box-sizing: border-box;
}

    #outer-splitter-host .k-pane > .k-splitter {
        height: 100%;
        min-height: 0;
    }


/* Topmost logo header bar (outside your page control) */
.logo-header-host {
/*    margin: 0;
    padding: 0;
    box-sizing: border-box;*/
}

/* Fluent header wrapper above the Splitter */
.page-header-host {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page wrapper that contains the Splitter */
.fluent-page {
    height: 100vh; /* you may switch to 100dvh for dynamic viewport units */
    margin: 0;
    padding: 0;
    overflow: hidden; /* panes handle their own scrollbars */
    box-sizing: border-box;
}

/* Splitter internals sometimes benefit from min-height:0 for nested overflow */
.k-splitter, .k-pane {
    min-height: 0;
}

/* TreeView tweaks (optional; helps with long node text) */
.tree-full {
    height: 100%;
    width: 100%;
}

    .tree-full .k-animation-container {
        overflow: visible;
    }

/* Right pane container (optional; let pane scroll, not the wrapper) */
.bottom-pane-content {
    height: 100%;
    min-height: 0;
    overflow: visible;
    box-sizing: border-box;
    padding: 8px 4px;
}



/* Used for autopagination in FluentDataGrid
    May need to set -app-header-height locally if page has different size header above grid

    <style>
    .grid-wrapper {
        --app-header-height: 60px;
        --app-footer-height: 40px;
    }
    </style>

    Razor example

    @* page column layout *@
    <div class="page-col">
        <FluentToolbar Class="toolbar-edit">
            <!-- your toolbar exactly as-is -->
        </FluentToolbar>

        @* The grid gets the flexible area *@
        <div class="grid-area">
            <FluentDataGrid Id="quotesgrid"
                            Items="@filteredQuotes"
                            TGridItem="QuoteLogView"
                            Pagination="@pagination"
                            AutoItemsPerPage="true"
                            RowSize="DataGridRowSize.Small"
                            ResizableColumns="false"
                            ShowHover="true">
                <!-- columns unchanged -->
            </FluentDataGrid>
        </div>

        @* Paginator below, not affecting the grid's height calculation *@
        <FluentPaginator State="@pagination" />
    </div>

*/

/* Make the overall page section a flex column that fills the viewport.
   Adjust the calc(...) to match your shell/headers/footers if you have them. */
.page-col {
    height: calc(100vh - var(--app-header-height, 0px) - var(--app-footer-height, 0px));
    display: flex;
    flex-direction: column;
    min-height: 0; /* critical to allow children to shrink */
}

/* The grid lives here and gets all remaining height between toolbar and paginator */
.grid-area {
    flex: 1 1 auto;
    min-height: 0; /* prevents overflow in flex layouts */
    overflow: hidden; /* avoid inner scrollbars; let the page scroll if needed */
}

    /* Optional: if the Fluent grid is wrapped by an extra div, apply these to that div too */
    .grid-area > * {
        min-height: 0;
    }

/* FluentDataGrid Scroll Horizontally 

    use .grid-scroll instead of .grid-area

    @{
        // Example: 8 columns at 180px each
        var gridStyleColumns = $"repeat(8, 180px)";
    }

    <FluentDataGrid Items="@filteredQuotes"
                    GridTemplateColumns="@gridStyleColumns"
                    GenerateHeader="GenerateHeaderOption.Sticky"
                    AutoItemsPerPage="true"
                    Pagination="@pagination"
                    Style="min-width: max-content;">
        <!-- columns... -->
    </FluentDataGrid>

*/


/* flexible area for the grid */
.grid-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden; /* default: no horizontal scroll on wide screens */
    padding: 0; /* ensure no extra pixels */
    border: 0; /* avoid adding fractional height via borders */
}

/* Optional: if the Fluent grid is wrapped by an extra div, apply these to that div too */
.grid-scroll > * {
    min-height: 0;
}

/* below breakpoint: allow horizontal scrolling - set locally as Style in razor page with max-width set to width of FluentDataGrid */
@media (max-width: 1024px) {
    .grid-scroll {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

/* key: prevent columns from shrinking; let width exceed viewport */
.grid-scroll fluent-data-grid,
.grid-scroll .fluent-data-grid {
    min-width: max-content; /* ensures grid can be wider than its container */
}


/* Applies to all Fluent components inside the provider */
.compact-scope {
    /* primary height/spacing controls */
    /*--control-height: 28px;*/ /* default ~32px–36px; shrink to 24–28px for compact */
    /*--design-unit: 3;*/ /* spacing scale unit; smaller = tighter */
    /*--corner-radius: 4px;*/ /* optional visual tweak */
    /* optional: make typography a bit smaller */
    /*    --type-ramp-base-font-size: 12px;
    --type-ramp-base-line-height: 16px;*/
}


.btn-s {
    --control-height: 40px;
    /*--design-unit: 2;*/
    /*font-size: 12px;*/
    /*padding: 0 8px;*/
}

.btn-xs {
    /*--control-height: 48px;*/
    --design-unit: 3;
    /*font-size: 14px;*/
    /*padding: 0px 0px;*/
}


.icon-btn {
    --control-height: 24px;
    width: 28px; /* nearly square */
    padding: 0;
    line-height: 1;
}

    .icon-btn fluent-icon, .icon-btn svg {
        width: 16px;
        height: 16px;
    }


.toolbar-edit {
    width: 100%;
    border-bottom: 1px solid var(--neutral-stroke-rest);
    --toolbar-item-gap: calc(var(--design-unit) * 2px);
    padding-bottom:2px;
}


body {
    --body-font: "Segoe UI Variable", "Segoe UI", sans-serif;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    margin: 0;
    padding: 0;
    height: 100vh;
}

.navmenu-icon {
    display: none;
}

.main {
    min-height: 768px;  /*calc(100dvh - 146px);*/
    min-width: 1024px;
    color: var(--neutral-foreground-rest);
    align-items: stretch !important;
}

.body-content {
    align-self: stretch;
    height: calc(100dvh - 50px) !important;
    display: flex;
}

.content {
    padding: 0.5rem;
    align-self: stretch !important;
    width: 100%;
}

.manage {
    width: 100dvw;
}

#headerDiv {
    background-color: #e9c1b3;
}

footer {
    background: var(--neutral-layer-4);
    color: var(--neutral-foreground-rest);
    align-items: center;
    padding: 10px 10px;
}

    footer a {
        color: var(--neutral-foreground-rest);
        text-decoration: none;
    }

        footer a:focus {
            outline: 1px dashed;
            outline-offset: 3px;
        }

        footer a:hover {
            text-decoration: underline;
        }

.alert {
    border: 1px dashed var(--accent-fill-rest);
    padding: 5px;
}


/* Hide selected parts below 1400px */
@media (max-width: 1400px) {
    .hide-below-1400 {
        display: none;
    }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    margin: 20px 0;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::before {
        content: "An error has occurred. "
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

@media (max-width: 600px) {
    .header-gutters {
        margin: 0.5rem 3rem 0.5rem 1.5rem !important;
    }

    [dir="rtl"] .header-gutters {
        margin: 0.5rem 1.5rem 0.5rem 3rem !important;
    }

    .main {
        flex-direction: column !important;
        row-gap: 0 !important;
    }

    nav.sitenav {
        width: 100%;
        height: 100%;
    }

    #main-menu {
        width: 100% !important;
    }

        #main-menu > div:first-child:is(.expander) {
            display: none;
        }

    .navmenu {
        width: 100%;
    }

    #navmenu-toggle {
        appearance: none;
    }

        #navmenu-toggle ~ nav {
            display: none;
        }

        #navmenu-toggle:checked ~ nav {
            display: block;
        }

    .navmenu-icon {
        cursor: pointer;
        z-index: 10;
        display: block;
        position: absolute;
        top: 15px;
        left: unset;
        right: 20px;
        width: 20px;
        height: 20px;
        border: none;
    }

    [dir="rtl"] .navmenu-icon {
        left: 20px;
        right: unset;
    }
}


.ms-nav-layout-content {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    flex-grow: 28;
    flex-shrink: .62153;
    flex-basis: 901px;
    min-width: 0;
}

.ms-nav-layout-rolecenter {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 27px;
    padding-bottom: 25px;
}

.ms-nav-layout-flex-grid {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    margin-top: -15px;
    margin-right: -21px;
    padding-bottom: 15px;
    margin-left: -21px;
    max-width: calc(100% + 42px);
    min-height: calc(100% + 15px);
}

.ms-nav-band-container-no-padding {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.banner {
    --borderRadiusXLarge: 8px;
    --strokeWidthThin: 1px;
    --colorNeutralBackground5: #e8ebed;
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
    align-items: stretch;
    position: relative;
    min-height: 346px;
    background-color: #e9c1b3;
    border-bottom-right-radius: var(--borderRadiusXLarge);
    border-bottom-left-radius: var(--borderRadiusXLarge);
    border-top-right-radius: var(--borderRadiusXLarge);
    border-top-left-radius: var(--borderRadiusXLarge);
    border-top-width: var(--strokeWidthThin);
    border-right-width: var(--strokeWidthThin);
    border-left-width: var(--strokeWidthThin);
    border-bottom-width: var(--strokeWidthThin);
    border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-bottom-style: solid;
    border-top-color: var(--colorNeutralBackground5);
    border-right-color: var(--colorNeutralBackground5);
    border-left-color: var(--colorNeutralBackground5);
    border-bottom-color: var(--colorNeutralBackground5);
    height: auto;
    padding: 0px;
    flex-wrap: wrap;
}

.banner__left {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    flex: 1 1 auto;
    min-width: 40%;
    display: flex;
    width: 100%;
    max-width: 441px;
    padding: 14px 30px 0px 30px;
}

.banner__left-content {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    width: 100%;
    max-width: 528px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    flex: 1;
}

.banner__right {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    flex: none;
    z-index: 1;
    margin: 0px;
    width: 100%;
    min-height: 220px;
    padding: 0 30px;
    height: 100%;
}

.banner__right-content {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.banner__bg {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    position: absolute;
    bottom: 0;
    height: 346px;
    right: -188px;
}

.banner_title {
    --bc-style-standard_mintint_45: #212121 !important;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    color: var(--bc-style-standard_mintint_45) !important;
    font-family: "Segoe UI Semibold", "Segoe WP Semibold", device-segoe-semibold, "Segoe UI", "Segoe WP", Segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 7px;
    margin-right: 20px;
}

.banner_header {
    --bc-style-standard_mintint_45: #212121 !important;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    font-family: "Segoe UI Semilight", "Segoe WP Semilight", device-segoe-semilight, "Segoe UI", "Segoe WP", Segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    color: var(--bc-style-standard_mintint_45) !important;
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 38px;
}

.banner_description {
    --bc-style-standard_mintint_45: #212121 !important;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    font-family: "Segoe UI", "Segoe WP", Segoe, device-segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: italic !important;
    text-transform: none !important;
    color: var(--bc-style-standard_mintint_45) !important;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
}

.stackcontrol-list {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cue-tile-container {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    box-sizing: border-box;
    display: block;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 6px;
}

.cue-tile-container-has-important-cue {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    box-sizing: border-box;
    display: block;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 6px;
    padding-right: 6px;
}

.body-102 {
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    box-sizing: border-box;
    display: block;
    color: rgb(50, 49, 48);
    background: transparent;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.wide-container {
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    color: rgb(50, 49, 48);
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    display: inline-block;
    padding-bottom: 10px;
    min-width: 244px;
    height: 138px;
    margin-bottom: 9px;
}

.caption-font-size-small {
    --bc-palette-1112195: #FFF !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    color: var(--bc-palette-1112195) !important;
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    display: block;
    font-family: "Segoe UI", "Segoe WP", Segoe, device-segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 10.5pt !important;
    height: 32px;
    line-height: 1.2;
    word-wrap: break-word;
}

.caption-container {
    --bc-palette-1112195: #FFF !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: inherit;
    font-weight: inherit;
    color: var(--bc-palette-1112195) !important;
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    display: block;
    margin-bottom: 3px;
}

.caption-container-wide {
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    color: rgb(50, 49, 48);
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    display: block;
    width: 175px;
}

.caption-half-height {
    --bc-brand-secondary: #505C6D !important;
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    display: block;
    color: var(--bc-brand-secondary) !important;
    font-family: "Segoe UI", "Segoe WP", Segoe, device-segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 10.5pt !important;
    height: 16px;
    white-space: nowrap;
    line-height: 1.2;
}

.sentiment-container {
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: inherit;
    font-weight: inherit;
    color: rgb(0, 132, 137);
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    height: 20px;
    width: 102px;
    display: flex;
    align-items: flex-end;
}

.sentiment {
    --bc-style-ambiguous: #9F9700 !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: inherit;
    font-weight: inherit;
    color: rgb(0, 132, 137);
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    display: block;
    background-color: var(--bc-style-ambiguous) !important;
    width: inherit;
    height: 3px;
}

.ms-peek {
    --bc-brand-primary_minflat_45: #008489 !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    font-size: 12pt !important;
    color: var(--bc-brand-primary_minflat_45) !important;
    font-family: "Segoe UI", "Segoe WP", Segoe, device-segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    height: 34px;
    display: flex;
    align-items: center;
}

.icon-RightCaret {
    --bc-brand-primary_minflat_45: #008489 !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    pointer-events: unset;
    font-size: 12pt !important;
    color: var(--bc-brand-primary_minflat_45) !important;
    font-family: "Segoe UI", "Segoe WP", Segoe, device-segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    text-transform: none !important;
    box-sizing: border-box;
}

.ms-Link {
    list-style: none;
    list-style-type: none;
    -webkit-user-drag: none;
    box-sizing: border-box;
    text-underline-position: from-font;
    cursor: pointer;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: inherit;
    font-weight: inherit;
    color: rgb(0, 132, 137);
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-align: left;
    pointer-events: unset;
}

.ms-Link-tileLink {
    --bc-palette-1112195: #FFF !important;
    --bc-sldaccn: #00838F !important;
    list-style: none;
    list-style-type: none;
    -webkit-user-drag: none;
    box-sizing: border-box;
    text-underline-position: from-font;
    cursor: pointer;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: inherit;
    font-weight: inherit;
    outline: none;
    text-decoration: none;
    color: var(--bc-palette-1112195) !important;
    background-color: var(--bc-sldaccn) !important;
    display: inline-block;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    min-width: 122px;
    min-height: 138px;
    pointer-events: unset;
}

.number-container {
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: inherit;
    font-weight: inherit;
    color: rgb(0, 132, 137);
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    min-height: 42px;
    display: flex;
    align-items: flex-end;
}

.number-largest {
    --bc-palette-1112195: #FFF !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    color: var(--bc-palette-1112195) !important;
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    font-family: "Segoe UI Light", "Segoe WP Light", device-segoe-light, "Segoe WP Semilight", "Segoe UI", "Segoe WP", Segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 37.5pt !important;
    line-height: 42px;
}

.summary_card_premium {
    --bc-style-standard: #212121 !important;
    list-style: none;
    list-style-type: none;
    text-underline-position: from-font;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    pointer-events: unset;
    box-sizing: border-box;
    color: var(--bc-style-standard) !important;
    font-family: "Segoe UI Light", "Segoe WP Light", device-segoe-light, "Segoe WP Semilight", "Segoe UI", "Segoe WP", Segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 37.5pt !important;
    line-height: 42px;
}

.formhost-control {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    break-inside: avoid-column;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0;
    margin: 15px 21px;
    max-width: calc((100%/1) - 43px) !important;
    width: 100%;
    margin-bottom: 0;
    flex-basis: 100% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.ms-nav-band-container {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.ms-nav-cardpartform {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
}

.ms-nav-flex {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
    transition: opacity .8s;
}

.ms-nav-root {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: flex;
}

.ms-nav-stackgroup {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    clear: both;
    margin-right: 0;
    margin-bottom: 6px;
    position: relative;
    transition: opacity .8s;
}

.ms-nav-stackgroup-title {
    --bc-palette--1818861216: #212121 !important;
    pointer-events: all;
    box-sizing: border-box;
    display: block;
    color: var(--bc-palette--1818861216) !important;
    font-family: "Segoe UI Semibold", "Segoe WP Semibold", device-segoe-semibold, "Segoe UI", "Segoe WP", Segoe, Tahoma, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 10.5pt !important;
    line-height: 1.3;
}

.home_cue-tile-container {
    font-family: "Segoe UI","Segoe WP",Segoe,device-segoe,Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 10pt;
    color: #444;
    pointer-events: all;
    list-style: none;
    list-style-type: none;
    box-sizing: border-box;
    display: block;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 6px;
}

.home_div_background {
    border: 1px medium var(--accent-fill-rest);
    min-height: 346px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("https://uploads.sitepoint.com/wp-content/uploads/2023/06/1687843235oiasp400.jpg");
    background-position: right bottom;
}

/* Risk View Styles*/

.quote-section {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}

.header-toolbar {
    background-color: var(--accent-fill-rest);
}

.premium-breakdown-heading {
    background-color: lightgreen;
    color: rgb(26,26,26);
    width: 100%;
    padding: 2px 0px 2px 10px;
    font-family: "Segoe UI Variable", "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 12pt;
    border-radius: 4px 4px 0px 0px
}

.original-premium-breakdown-heading {
    background-color: lightblue;
    color: rgb(26,26,26);
    width: 100%;
    padding: 2px 0px 2px 10px;
    font-family: "Segoe UI Variable", "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 12pt;
    border-radius: 4px 4px 0px 0px
}

.policy-details-heading {
    background-color: lightblue;
    color: rgb(26,26,26);
    width: 100%;
    padding: 2px 0px 2px 10px;
    font-family: "Segoe UI Variable", "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 12pt;
    border-radius: 4px 4px 0px 0px
}


@media (prefers-color-scheme: dark) {
    fluent-accordion-item::part(collapsed-icon) {
        color: white;
    }

    fluent-accordion-item.expanded::part(expanded-icon) {
        color: white;
    }
}

    .accordian-heading {
        background-color: lightblue;
        color: rgb(26,26,26);
        width: 100%;
    }

    .accordian-input-heading {
        background-color: lightgoldenrodyellow;
        color: rgb(26,26,26);
        width: 100%;
    }

    .accordian-input-heading-expanded {
        background-color: lightgreen;
        color: rgb(26,26,26);
        width: 100%;
    }

    .accordian-input-heading-error {
        background-color: lightsalmon;
        color: rgb(26,26,26);
        width: 100%;
    }

    .accordian-additional-questions-heading {
        background-color: lightgreen;
        color: rgb(26,26,26);
        width: 100%;
    }

    .navigator-icon {
        border-width: 1px;
        border-style: solid;
        border-color: #efefef;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
        border-radius: 0.375rem;
    }

    .navigator-heading {
        background-color: lightblue;
        width: 100%;
    }

    .navigator-input-heading {
        background-color: lightgoldenrodyellow;
        width: 100%;
    }

    .navigator-input-heading-expanded {
        background-color: lightgreen;
        width: 100%;
    }

    .navigator-input-heading-error {
        background-color: lightsalmon;
        width: 100%;
    }


    .date-time {
        width: 150px;
    }

    .premium {
        width: 130px;
    }

    .text {
        min-width: 130px;
    }

    .risk-input control {
        background-color: antiquewhite;
    }

    .input-label {
        /*    background-color: lightgoldenrodyellow;
    font-weight: bold;*/
    }

    .input-label-changed {
        background-color: lightgoldenrodyellow;
        color: red;
        font-weight: bold;
    }


    /*    so that dirrty will work */

    .k-input-inner {
        background-color: transparent;
    }

    .dirty {
        background-color: lightgoldenrodyellow;
        color: red;
    }

    .no-selected-indicator fluent-tree-item[selected]::part(positioning-region) {
        background-color: var(--neutral-fill-stealth-rest);
    }

    .no-selected-indicator fluent-tree-item::part(positioning-region):hover {
        background-color: var(--neutral-fill-stealth-rest);
    }

    .no-selected-indicator fluent-tree-item[selected]::after {
        display: none;
    }


    .grid-reduce-row-height .k-grid-header .k-table-th,
    .grid-reduce-row-height .k-grid-content .k-table-td {
        padding: 2px 4px;
        /*font-size: 12px;*/
    }


    .td.k-table-td {
        /*height:20px;*/
    }

    .k-treeview-leaf.k-selected {
        background-color: transparent;
        color: black;
        border-color: darkgrey;
    }

    .k-treeview-leaf:focus, .k-treeview-leaf.k-focus {
        box-shadow: var(--kendo-treeview-item-focus-shadow, inset 0 0 0 2px lightgrey);
    }



    .k-table-thead {
        background-color: #e9c1b3;
    }

    .k-table-th {
        font-weight: bolder;
    }

    #datagrid-container {
        height: calc(100% - 3rem);
        min-height: 8rem;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .datagrid-content {
        height: calc(100% - 4rem);
    }

    .datagrid-pagination-content {
        min-height: 135px !important;
        height: 100%;
    }


    /*.k-button-solid-primary {
    background-color: #c94f1c;
    border-color: #c94f1c;
}

.k-button-solid-primary:hover {
    background-color: #c94f1c;
    border-color: grey;
}

k-splitbar:focus .k-splitbar.k-focus {
    background-color: #c94f1c;
    color: #c94f1c;
}

*/
