@font-face{font-family:acumin-pro-semi-condensed;src:url(https://use.typekit.net/af/3f7b4d/00000000000000003b9acb2d/27/l?subset_id=1&fvd=n4&v=3) format("woff2"),url(https://use.typekit.net/af/3f7b4d/00000000000000003b9acb2d/27/d?subset_id=1&fvd=n4&v=3) format("woff"),url(https://use.typekit.net/af/3f7b4d/00000000000000003b9acb2d/27/a?subset_id=1&fvd=n4&v=3) format("opentype");font-style:normal;font-weight:400}

/* Ensure consistent height for all filter components (textbox and dropdowns) — matches UAT DevExpress height */
.form-control,
.form-select,
.input-group {
    height: 56px;
}

.input-group .form-control {
    height: 100%;
}

/* Align filter row items to the top */
.row.g-3 {
    align-items: flex-start;
}

/* Remove border from clear button in text inputs */
.input-group .btn-clear,
.input-group button {
    border: none;
    background: transparent;
}

/* TextBox clear button: wrapper acts as the visible input border; button overlays inside (matches UAT DevExpress style) */
.input-group.ui-textbox {
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: #fff;
    flex-wrap: nowrap;
}
.input-group.ui-textbox:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}
.input-group.ui-textbox .form-control {
    border: none !important;
    box-shadow: none !important;
    background: transparent;
    padding-right: 40px;
    width: 100%;
    border-radius: 0;
}
.input-group.ui-textbox .editor-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: none !important;
    background: transparent !important;
    padding: 0;
}

/* ComboBox null text colour — matches UAT DevExpress placeholder (#bbbbbb) */
select.ui-combobox:has(option[value=""]:checked) {
    color: #bbbbbb !important;
}
/* Options in the open dropdown list always use normal dark text */
select.ui-combobox option {
    color: initial;
}

body {
	font-family: "acumin-pro-semi-condensed", serif;
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
	color: black;

	--color-goa-teal: #387F9F;
	--color-light-red: #ff8080;
}

/* Prevent background page scroll when modal is open */
body:has(.modal.show) {
	overflow: hidden;
}

/* Modal sizing — match UAT (max 800px, responsive at small viewports) */
.modal-lg {
	max-width: min(800px, 95vw) !important;
}

.color-goa-teal {
	color: var(--color-goa-teal);
}

.color-light-red {
	color: var(--color-light-red);
}

/********************
 sections
********************/

section + section {
	margin-top: 30px;
}

/********************
 headings
********************/

h1 {
	font-size: 40px !important;
	font-weight: 700;
	margin-bottom: 20px;
}

h1:focus-visible {
	outline: none;
}

h2 {
	font-weight: normal;
	font-size: 24px !important;
	margin-bottom: 20px;
}

h3 {
	font-weight: normal;
	font-size: 30px !important;
	margin-bottom: 20px;
}

h4 {
	margin: 10px 0 8px 0;
}

/********************
 header
********************/

header {
	border-bottom: 1px solid var(--color-goa-teal);
}

header nav {
	min-height: 90px;
}

header .logo {
	width: 150px;
}

header .title {
	color: #333333;
	font-size: 19px;
	display: inline-block;
}

header a {
	color: #bbb;
	font-weight: bold;
	text-decoration: none;
	font-size: 16px !Important;
}

/*header a:not(:first-child) {*/
/*	padding-left: 14px;*/
/*}*/

header a:hover {
	color: #666;
}

header a.active {
	color: #666;
}

/********************
 section
********************/

/*.page-intro {*/
/*	margin-bottom: 40px;*/
/*}*/

.page-intro h1 {
	font-size: 28px;
	color: black;
}

/********************
 form
********************/

.form-fields {
	margin-bottom: -10px !important;
}

.form-field {
	margin-bottom: 10px;
}

label {
	color: #999999;
	font-size: 15px;
	margin-bottom: 6px;
}

.form-buttons {
	margin-top: 16px;
}

.form-buttons .btn:not(:first-child) {
	margin-left: 6px;
}

.form-fields + .form-buttons-bottom-between {
	margin-top: 15px;
}

.form-buttons-bottom-between {
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
}

.icon-secondary {
	color: #C1C1C1;
}

.icon {
	color: #0081A2;
}

/********************
 grid
********************/

.grid-buttons-top {
    text-align: right;
    margin-bottom: 16px;
}

.grid-buttons-bottom {
    margin-top: 15px;
}

.grid-buttons-bottom-between {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

/********************
 dropzone
********************/

.dropzone {
	color: #aaa;
	background-color: #f6f6f6;
	border: 1px solid #ddd;
	min-height: 240px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dropzone:hover {
	background-color: #eee;
}

/********************
 footer
********************/

footer {
	min-height: 30px;
	background-color: var(--color-goa-teal);
}

/********************
 tag
********************/

.tag {
	padding: 4px 10px 5px 10px;
	background-color: #949494;
	color: white;
	border-radius: 8px;
	font-style: normal;
	font-size: 11px;
	line-height: 100%;
}

.tag:not(:first-child) {
	margin-left: 6px;
}

.tag.success {
	background-color: #006F4C;
	color: white;
}

.tag.warning {
	background-color: #EFCA40;
	color: black;
}

.tag.danger {
	background-color: #DA291C;
	color: white;
}

.tag.unavailable {
	background-color: #FCE4E1;
	color: #8D1714;
	border: 2px solid #E8AAA3;
}

.tag.light {
	background-color: rgba(255, 255, 255, 0.6);
	color: #888;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.tag.updated-tag {
	font-weight: 600;
	letter-spacing: 0.4px;
	color: #5a5a5a;
}

.tag.outline {
	background-color: #F1F1F1;
	color: #004A8F;
	border: 1px solid #ccc;
}

/********************
 card
********************/

.card.interactive:hover .card-body {
	background-color: #fcfcfc;
	cursor: pointer !important;
}

/********************
 banner
********************/

.banner {
	background-color: #F1F1F1;
	font-size: 13px;
	border-bottom: 1px solid white;
	padding: 6px 0 8px 0;
}

.banner .duo {
	display: inline;
}

.banner .duo .title {
	display: inline;
	background-color: #0070C4;
	padding: 2px 12px 5px 12px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	color: white;
}

.banner .duo .description {
	display: inline;
	background-color: #0091ff;
	padding: 2px 12px 5px 12px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	color: white;
}

.banner .duo:not(:first-of-type) {
	margin-left: 6px;
}

/********************
 notification banner
********************/

.notification-banner {
	--notification-banner-fg: white;
	--notification-banner-bg: #0077AD;

	background-color: var(--notification-banner-bg);
	color: var(--notification-banner-fg);
	font-size: 15px;
	padding: 18px 0;
}

.notification-banner-content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.notification-banner-icon {
	font-size: 16px;
	line-height: 1.6;
	flex-shrink: 0;
}

.notification-banner-text {
	line-height: 1.6;
}

.notification-banner-information {
	--notification-banner-bg: #0077AD;
	--notification-banner-fg: white;
}

.notification-banner-important {
	--notification-banner-bg: #F9CE2D;
	--notification-banner-fg: #1F1F1F;
}

.notification-banner-emergency {
	--notification-banner-bg: #DA291C;
	--notification-banner-fg: white;
}

/* Compact presentation — tighter spacing and a smaller vertical footprint.
   Applied explicitly for dense layouts and automatically on mobile viewports. */

.notification-banner-compact {
	padding: 8px 0;
	font-size: 14px;
}

.notification-banner-compact .notification-banner-content {
	gap: 8px;
}

.notification-banner-compact .notification-banner-icon {
	font-size: 14px;
	line-height: 1.5;
}

.notification-banner-compact .notification-banner-text {
	line-height: 1.5;
}

@media (max-width: 575.98px) {
	.notification-banner {
		padding: 8px 0;
		font-size: 14px;
	}

	.notification-banner .notification-banner-content {
		gap: 8px;
	}

	.notification-banner .notification-banner-icon {
		font-size: 14px;
		line-height: 1.5;
	}

	.notification-banner .notification-banner-text {
		line-height: 1.5;
	}
}

.intro-summary-no-bg {
	padding: 12px 16px; 
	border: 1px solid #b3deff;
	border-radius: 10px; 
	margin-bottom: 20px;
}

.intro-summary {
	background-color: #e6f4ff;
	padding: 12px 16px;
	border: 1px solid #b3deff;
	border-radius: 10px;
	margin-bottom: 20px;
}

/********************
 other
********************/

.no-wrap {
	white-space: nowrap;
	flex-shrink: 0;
}

.cursor-help {
	cursor: help;
}

.lh-0 {
	line-height: 0 !important;
}

.interactive {
	cursor: pointer !important;
}