/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/

:root {
    --bs-warning-rgb: 255, 150, 1 !important;
    --bs-warning: #ff9601 !important;
    --bs-yellow: #ff9601 !important;
    --bs-blue: #0F6CBD !important;
    --bs-pagination-active-bg: #0F6CBD !important;
    --bs-card-border-radius: 1rem !important;
}

/* Hide top row if .cbr-window-container exists anywhere */
body:has(.cbr-window-container) .top-row,
body:has(.cbr-window-container) .cbr-top-row {
    display: none !important;
}

body:has(.cbr-window-container) .cbr-content {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* width of scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

/* transparent track (background area) */
::-webkit-scrollbar-track {
    background: transparent;
}

/* thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: rgba(136, 136, 136, 0.4); /* semi-transparent */
    border-radius: 4px;
}

/* hide the scrollbar buttons (arrows) */
::-webkit-scrollbar-button {
    display: none;
}



/*---------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------BOOTSTRAP OVERRIDES-------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/
/*
.btn-group-sm > .btn, .btn-sm {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
}
*/

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0F6CBD;
    --bs-btn-border-color: #0F6CBD;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0F548C;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0F6CBD;
    --bs-btn-disabled-border-color: #0F6CBD;
    /*min-width: 100px !important;*/
}

.btn-outline-primary {
    --bs-btn-color: #0F6CBD;
    --bs-btn-border-color: #0F6CBD;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0F6CBD;
    --bs-btn-hover-border-color: #0F6CBD;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0F6CBD;
    --bs-btn-active-border-color: #0F6CBD;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0F6CBD;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0F6CBD;
    --bs-gradient: none;
    /*min-width: 100px !important;*/
}



/*-------------------------------------------------Drop Menu-------------------------------------------------*/
/* Outer dropdown animation */
.dropdown-menu {
    border-radius: 1rem;
    background-color: rgba(255,255,255, 0.7);
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

    /* When dropdown is shown */
    .dropdown-menu.show {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

        /* Inner list item animation (fade in) */
        .dropdown-menu.show ul li {
            animation: fadeSlideIn 300ms ease-in-out forwards;
            opacity: 0;
            transform: translateX(-10px);
        }

/* Small delay between items */
.dropdown-menu.show ul li:nth-child(1) { animation-delay: 0ms; }
.dropdown-menu.show ul li:nth-child(2) { animation-delay: 10ms; }
.dropdown-menu.show ul li:nth-child(3) { animation-delay: 20ms; }
.dropdown-menu.show ul li:nth-child(4) { animation-delay: 30ms; }
.dropdown-menu.show ul li:nth-child(5) { animation-delay: 40ms; }
.dropdown-menu.show ul li:nth-child(6) { animation-delay: 50ms; }
.dropdown-menu.show ul li:nth-child(7) { animation-delay: 60ms; }
.dropdown-menu.show ul li:nth-child(8) { animation-delay: 70ms; }
.dropdown-menu.show ul li:nth-child(9) { animation-delay: 80ms; }
.dropdown-menu.show ul li:nth-child(10) { animation-delay: 90ms; }
.dropdown-menu.show ul li:nth-child(11) { animation-delay: 100ms; }
.dropdown-menu.show ul li:nth-child(12) { animation-delay: 110ms; }
.dropdown-menu.show ul li:nth-child(13) { animation-delay: 120ms; }
.dropdown-menu.show ul li:nth-child(14) { animation-delay: 130ms; }
.dropdown-menu.show ul li:nth-child(15) { animation-delay: 140ms; }
/* Add more nth-child if you expect more list items */


    .dropdown-menu .dropdown-item {
        transition: background-color 150ms ease, color 150ms ease, transform 200ms ease, box-shadow 200ms ease;
    }
        .dropdown-menu .dropdown-item:hover {
            background-color: #CFE4FA; /* Soft Bootstrap primary tint */
            color: #0F548C;
            transform: scale(1.05); /* Modern lift */
        }

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}





/*---------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------HTML OVERRIDES-------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1 {
    font-weight: bold !important;
    font-size: 32px !important;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

small {
    font-size: 0.8rem !important;
}


/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------CBR CLASSES-------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/

.cbr-table {
    transition: height 0.5s ease; /* animate if height changed */
}


.editor-toolbar button,
.editor-toolbar select {
    margin-right: 4px;
}

.editor-area {
    min-height: 200px;
    background-color: white;
    overflow-y: auto;
    white-space: pre-wrap;
}



.cbr-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cbr-blur-custom {
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}



/*-------------------------------------------------CBR Spinner-------------------------------------------------*/
.cbr-spinner {
    width: 90px;
    height: 90px;
    border: 2px solid transparent;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: cbr-spin .6s linear infinite;
}

@keyframes cbr-spin {
    to {
        transform: rotate(360deg);
    }
}

.cbr-loader-text {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    letter-spacing: 0.5px;
    font-family: "Segoe UI", Roboto, sans-serif;
    opacity: 0.9;
}



/*-------------------------------------------------Quick Action Cards-------------------------------------------------*/
/* Core container styling */
.quick-action-card {
    position: relative; /* So child elements can be absolutely positioned */
    overflow: hidden; /* Hide overflowing emoji background */
    background: #f8f9fa; /* Light gray background */
    border-radius: 1rem; /* Soft round corners */
    border: 1px solid rgba(13, 110, 253, 0.15); /* Subtle border */
    padding: 1rem 1.25rem; /* Internal spacing */
    height: 80px; /* Fixed height */
    cursor: pointer; /* Pointer on hover */
    transition: all 0.2s ease-in-out; /* Smooth hover effect */
    box-shadow: 0 1px 3px rgba(0,0,0,0.03); /* Subtle shadow */
}

    /* Hover effect */
    .quick-action-card:hover {
        background: #e9f1ff; /* Slightly blue hover background */
        box-shadow: 0 4px 10px rgba(13,110,253,0.07); /* Elevated shadow */
        transform: translateY(-1px); /* Slight lift */
    }

/* Wrapper for background emoji */
.quick-action-icon-wrapper {
    position: absolute; /* Positioned to the card */
    bottom: -12px; /* Stick to bottom */
    right: -28px; /* Stick to right */
    width: 80px; /* Fixed size */
    height: 80px;
    z-index: 0; /* Behind content */
    pointer-events: none; /* Prevent interaction */
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 0; /* Remove padding */
}

/* Emoji styling */
.quick-action-emoji {
    font-size: 4.5rem; /* Large emoji */
    opacity: 0.12; /* Faint background */
    line-height: 1;
    user-select: none;
    margin: 0;
    padding: 0;
}

/* Foreground content wrapper */
.quick-action-content {
    position: relative;
    z-index: 1; /* In front of emoji */
}

    /* Main label text */
    .quick-action-content .quick-label {
        font-size: 1.15rem;
        font-weight: 600;
        color: #212529;
        letter-spacing: 0.2px;
    }

    /* Sub-label text */
    .quick-action-content .quick-sublabel {
        font-size: 0.75rem;
        font-weight: 500;
        color: #856404;
        text-transform: uppercase;
        opacity: 0.7;
        letter-spacing: 0.4px;
    }

/* Icon background box */
.icon-box {
    width: 36px;
    height: 36px;
    background: #e0edff; /* Light blue by default */
    border-radius: 0.75rem;
}




/*-------------------------------------------------CBR INPUT-------------------------------------------------*/

.cbr-floating-input-text-container {
    position: relative !important;
    height: 23px;
    display: flex;
    flex-direction: column; /* optional, depending on layout */
    flex-grow: 1; /* allow this block to grow if needed */

    align-self: center;
    transition: all 0.2s ease;
}

/* When input is focused OR has content, move to bottom */
.cbr-floating-input-text-container:has(input:focus),
.cbr-floating-input-text-container:has(input:not(:placeholder-shown)) {
    align-self: flex-end;
}

.cbr-floating-input-text-container label {
    position: absolute !important;
    transform: translateY(-50%);
    top: 50%;
    left: 15px;
    font-size: 14px;
    pointer-events: none;
    color: black;
    padding: 0 5px;
    transition: 0.2s;
    
    /*
    font-size: 1em;
    color: black;
    padding: 0 25px;
    margin: 0 25px;
    transition: 0.2s ease;
    */
}

.cbr-floating-input-text-container input {
    /*height: 28px;*/
    padding: 0 15px;
    border: none;
    background: transparent;
    outline: none;
    border-radius: 0;
    flex-grow: 1;
    min-width: 0;
    width: 100%; /* optional, ensures full width */
    font-size: 14px;
}

.cbr-floating-input-text-container input:focus~label,
.cbr-floating-input-text-container input:not(:placeholder-shown)~label {
    top: -7px;              /* Move it up/down (-up +down) */
    left: 15px;             /* Optional: adjust horizontal position (-left +right) */
    font-size: 12px;
    padding: 0 0;
    /*background: rgba(255,255,255,.3);*/
    color: #626262;
}

/* Hide the placeholder by default */
.cbr-floating-input-text-container input::placeholder {
    color: transparent;
    transition: color 0.2s;
}

/* Show placeholder only on focus AND when input is empty */
.cbr-floating-input-text-container input:focus:placeholder-shown::placeholder {
    color: #aaa; /* or any color you prefer */
}

/* Hide placeholder when user starts typing */
.cbr-floating-input-text-container input:not(:placeholder-shown)::placeholder {
    color: transparent;
}

/* When input has content or is focused, align the input block to bottom */
.cbr-floating-input-text-container.input-has-content {
    align-self: flex-end;
}


/* Group container */
.cbr-input-group {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.cbr-input-group > * {
	flex: 1 1 0;
	min-width: 0; /* Prevent overflow in nested flex layouts */
}

/* Target CBRRawWidget wrapper (assumed to render as divs or similar block elements) */
.cbr-input-group > *:first-child {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.cbr-input-group > *:last-child {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.cbr-input-group > *:not(:first-child):not(:last-child) {
	border-radius: 0 !important;
}

/* Apply same logic to the internal wrapper inside each input */
.cbr-input-group > *:first-child .rounded-5 {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.cbr-input-group > *:last-child .rounded-5 {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.cbr-input-group > *:not(:first-child):not(:last-child) .rounded-5 {
	border-radius: 0 !important;
}




/*-------------------------------------------------CBR CONTAINERS & WIDGETS-------------------------------------------------*/

.cbr-widget-container {
    gap: 1em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cbr-box-shadow {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .02);
}


.bottom-right-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px; /* or whatever size you want */
    height: 50px; /* keep it square */
    z-index: 10; /* make sure it's on top if needed */
}

/* Smooth fade & slide-up animation */
.cbr-widget-animate {
    opacity: 0; /* start invisible */
    transform: translateY(20px); /* start slightly below */
    animation: fadeSlideUp 0.3s ease-out forwards;
}

    /* Staggered delay for sequential appearance */
    .cbr-widget-animate:nth-child(1) {
        animation-delay: 0.1s;
    }

    .cbr-widget-animate:nth-child(2) {
        animation-delay: 0.2s;
    }

    .cbr-widget-animate:nth-child(3) {
        animation-delay: 0.3s;
    }

    .cbr-widget-animate:nth-child(4) {
        animation-delay: 0.4s;
    }

    .cbr-widget-animate:nth-child(5) {
        animation-delay: 0.5s;
    }

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*-------------------------------------------------CBR INPUT FILE-------------------------------------------------*/

.drag-area-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.drag-area-content {
    border: 2px dashed #cfd9e0;
    border-radius: 0.75rem;
    background-color: #f2f5fc;
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.input-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

/* Folder icon (or any other emoji or insert <img> / SVG) */
.upload-icon {
    font-size: 3rem;
    color: #3454d1;
    margin-bottom: 0.5rem;
}

/* Instruction text */
.upload-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

/* "OR" divider */
.or-divider {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    color: #a0aec0;
}

    .or-divider::before,
    .or-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background-color: #e2e8f0;
        margin: 0 1rem;
    }


/* Browse files button */
.upload-button {
    background-color: #0F6CBD;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    pointer-events: none; /* Click handled by InputFile */
}



/*-------------------------------------------------CBR CHART-------------------------------------------------*/

/* Wrapper around the entire chart */
.cbr-chart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    padding: 1rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

/* Vertical Y-axis title */
.cbr-y-axis-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Container that holds everything inside the chart */
.cbr-chart-area {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Chart inner structure where grid and bars are rendered */
.cbr-chart-inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 300px;
    width: 100%;
    /*border-left: 2px solid #444;*/
    border-bottom: 1px solid #444;
    padding-left: 3rem; /* Originally 2rem */
    /*padding-bottom: 1rem;*/
    gap: 1rem;
}

/* Horizontal grid lines container */
.cbr-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

/* Each horizontal line */
.cbr-grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    opacity: 0.5;
}

/* Y-axis value labels */
.cbr-y-axis-labels {
    position: absolute;
    left: 0;
    bottom: 6px;
    height: 100%;
    width: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.75rem;
    text-align: right;
    color: #444;
}

/* Each Y-axis value */
.cbr-y-label {
    position: absolute;
    left: 0;
    transform: translateY(50%);
}

/* Group container for bars */
.cbr-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
    height: 100%;
    margin-bottom: -1.28rem;
}

.cbr-bars-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
    gap: 4px;
}


/* Each colored bar in the chart */
.cbr-bar-item {
    width: 20px;
    transition: height 0.6s ease;
    border-radius: 4px 4px 0 0;
    z-index: 1;
}

/* Label below each group of bars */
.cbr-group-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Optional X-axis title */
.cbr-x-axis-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

/* Legend container */
.cbr-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Individual legend item */
.cbr-legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    background-color: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Color box in legend */
.cbr-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

/* Responsive font size */
@media (max-width: 600px) {
    .cbr-y-axis-title,
    .cbr-x-axis-title {
        font-size: 0.85rem;
    }

    .cbr-group-label {
        font-size: 0.75rem;
    }

    .cbr-legend-item {
        font-size: 0.75rem;
    }

    .cbr-bar-item {
        width: 16px;
    }
}






/*-------------------------------------------------OTHER-------------------------------------------------*/




/*------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------CBR COLORS-------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/


.cbr-brown {
    color: #a15004 !important;
}

.cbr-bg-brown {
    background-color: #a15004 !important;
}

.cbr-border-brown {
    border-color: #a15004 !important;
}



.cbr-orange {
    color: #f4900c !important;
}

.cbr-bg-orange {
    background-color: #f4900c !important;
}

.cbr-border-orange {
    border-color: #f4900c !important;
}



.cbr-yellow-light {
    color: #d9c6a4 !important;
}

.cbr-bg-yellow-light {
    background-color: #d9c6a4 !important;
}

.cbr-border-yellow-light {
    border-color: #d9c6a4 !important;
}


.cbr-yellow {
    color: #ffb001 !important;
}

.cbr-bg-yellow {
    background-color: #ffb001 !important;
}

.cbr-border-yellow {
    border-color: #ffb001 !important;
}



.cbr-sky-blue {
    color: #F3FBFD !important;
}

.cbr-bg-sky-blue {
    background-color: #F3FBFD !important;
}

.cbr-border-sky-blue {
    border-color: #F3FBFD !important;
}


.cbr-blue-light {
    color: #CFE4FA !important;
}

.cbr-bg-blue-light {
    background-color: #CFE4FA !important;
}

.cbr-border-blue-light {
    border-color: #CFE4FA !important;
}


.cbr-blue {
    color: #0F6CBD !important;
}

.cbr-bg-blue {
    background-color: #0F6CBD !important;
}

.cbr-border-blue {
    border-color: #0F6CBD !important;
}


.cbr-blue-dark {
    color: #0F548C !important;
}

.cbr-bg-blue-dark {
    background-color: #0F548C !important;
}

.cbr-border-blue-dark {
    border-color: #0F548C !important;
}



.cbr-red {
    color: #BD404D !important;
}

.cbr-bg-red {
    background-color: #BD404D !important;
}

.cbr-border-red {
    border-color: #BD404D !important;
}


.cbr-red-dark {
    color: #861B2D !important;
}

.cbr-bg-red-dark {
    background-color: #861B2D !important;
}

.cbr-border-red-dark {
    border-color: #861B2D !important;
}


.cbr-navy {
    color: #00324B !important;
}
.cbr-bg-navy {
    background-color: #00324B !important;
}
.cbr-border-navy {
    border-color: #00324B !important;
}



.cbr-gray {
    color: #f2f3f5 !important;
}

.cbr-bg-gray {
    background-color: #f2f3f5 !important;
}

.cbr-border-gray {
    border-color: #f2f3f5 !important;
}



/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------DEFAULT CSS-------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.sidebar {
    background-color: white !important;
}

#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;
}

    #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::after {
        content: "An error has occurred."
    }

.scrollable-dropdown-menu {
    height: auto;
    max-height: 400px;
    overflow-x: hidden;
}

.table-light {
    --bs-table-bg: #e9ecef !important;
}

.resizable-table {
    width: 100%;
    border-collapse: collapse;
}

    .resizable-table th {
        position: relative;
    }

.resizer {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    cursor: col-resize;
    background-color: transparent;
}

.cy-sidebar {
    --bs-bg-opacity: 1;
    /*background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;*/
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

    .cy-sidebar .nav-link:hover {
        background: #CFE4FA !important;
        color: #0F548C !important;
    }

    .cy-sidebar .nav-item a.active {
        background-color: #CFE4FA !important;
        color: #000 !important;
    }

    .cy-sidebar .nav-item a {
        color: #212529;
        height: 2.8rem !important;
    }

@media (min-width: 641px) {
    .cy-sidebar {
        width: 190px;
        height: 100vh;
        position: sticky;
        top: 0;
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }
}

@media print {

    .sidebar {
        max-height: 0px;
        max-width: 0px;
    }

    body * {
        visibility: hidden;
    }

    .printable, .printable * {
        visibility: visible;
    }
}