@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lcdo7z9xd2.bundle.scp.css';

/* /Components/Layout/StandardLayout.razor.rz.scp.css */
/*.standard-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.standard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: #003366;
    color: white;
}

.standard-logo-link {
    text-decoration: none;
    color: inherit;
}

.standard-logo-text {
    font-weight: 600;
    font-size: 1.25rem;
}

.standard-header-right {
    font-size: 0.9rem;
}

.standard-page-title {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.standard-page-title h1 {
    margin: 0;
    font-size: 1.5rem;
}

.standard-page-banner {
    margin-top: 0.25rem;
    font-size: 0.95rem;
}

.standard-breadcrumbs {
    padding: 0.5rem 1.5rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.85rem;
}

.standard-main {
    flex: 1;
    padding: 1.5rem;
}

.standard-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.standard-message-info {
    background-color: #e8f4ff;
    border: 1px solid #90caf9;
    color: #0d47a1;
}

.standard-message-error {
    background-color: #ffebee;
    border: 1px solid #ef9a9a;
    color: #b71c1c;
}

.standard-content {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.standard-footer {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    text-align: right;
    color: #666666;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
}
*/
.dropdown-overlay[b-s4tv19l6qn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    background: transparent;
}

.dropdown-container[b-s4tv19l6qn] {
    position: relative;
    z-index: 100;
}
/* /Components/Shared/BlockableContainer.razor.rz.scp.css */
.blockui-element-container[b-unwu5deg1r] {
	position: relative;
}

.blockui-element-overlay[b-unwu5deg1r] {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.6);
	z-index: 5;
	pointer-events: auto;
}

.blockui-element-message[b-unwu5deg1r] {
	padding: 4px 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.95);
	color: #333;
	font-family: "Segoe UI", Arial, sans-serif;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* /Components/Shared/BlockUIOverlay.razor.rz.scp.css */
.blockui-page-overlay[b-9cx4tmqcyf] {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1050;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 500ms ease;
}

.blockui-page-overlay.is-active[b-9cx4tmqcyf] {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.blockui-message[b-9cx4tmqcyf] {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 50px;
	border-radius: 40px;
	background: black;
	color: white;
	font-size: 14pt;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	font-family: "Segoe UI", Arial, sans-serif;
}

.blockui-spinner[b-9cx4tmqcyf] {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #b0b0b0;
	border-top-color: #4682b4;
	animation: blockui-spin-b-9cx4tmqcyf 0.7s linear infinite;
}

@keyframes blockui-spin-b-9cx4tmqcyf {
	to {
		transform: rotate(360deg);
	}
}
/* /Components/Shared/PagePopup.razor.rz.scp.css */
.page-popup-overlay[b-gn4bp7h0gc] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-popup-dialog[b-gn4bp7h0gc] {
    width: 65vw;
    height: 75vh;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-popup-header[b-gn4bp7h0gc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0px 2px 10px;
    border-bottom: 1px solid #ddd;
    background: lightsteelblue;
    flex-shrink: 0;
}

.page-popup-title[b-gn4bp7h0gc] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.page-popup-close[b-gn4bp7h0gc] {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0 4px;
}

.page-popup-close:hover[b-gn4bp7h0gc] {
    color: #000;
}

.page-popup-body[b-gn4bp7h0gc] {
    flex: 1;
    overflow: hidden;
}

.page-popup-iframe[b-gn4bp7h0gc] {
    width: 100%;
    height: 100%;
    border: none;
}
/* /Components/Shared/Reporting/Dialog.razor.rz.scp.css */
.dialog-overlay[b-7fmp3qo67p] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-main[b-7fmp3qo67p] {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dialog-header[b-7fmp3qo67p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0px 2px 10px;
    border-bottom: 1px solid #ddd;
    background: lightsteelblue;
    flex-shrink: 0;
}

.dialog-title[b-7fmp3qo67p] {
    font-size: 14px;
    font-weight: 500;
    color:#333;
}

.dialog-close[b-7fmp3qo67p] {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0 4px;
}

.dialog-close:hover[b-7fmp3qo67p] {
    color: #000;
}

.dialog-body[b-7fmp3qo67p] {
    flex: 1;
    overflow: auto;
}

[b-7fmp3qo67p] table.grid th {
    top: 0px;
}
/* /Components/Shared/Resources.razor.rz.scp.css */
div.resourcesContainer[b-f14mx3z9sz] {
	position:absolute;
	background-color: white;
	outline: 0px;
	z-index: 1002;
	max-height: 85%;
	width: 250px;
	top: 60px;
	right: 10px;
	display: block;
	font-size: 14px;
	text-align:left;
	border-radius:3px;
	border:1px solid #ddd;
	padding: 0.1em;
}

div.resourceContainerTitle[b-f14mx3z9sz] {
	background-color: cornflowerblue;
	color:white;
	border-radius:3px;
	padding: 3px 6px;
	margin:2px 2px 0px;
	font-weight: 600;
}

div.resourceContainerTitle a.dialogClose[b-f14mx3z9sz] {
	float:right;
	font-weight:bold;
	border-bottom:none;
	color:white;
}

div.resourcesContainer a[b-f14mx3z9sz] {
	color: #333;
}

div.resourcesContainer b[b-f14mx3z9sz] {
	font-weight:600 !important;
}
