/* =============================================================================
   Forecasting calendar — standalone styles (no moose_styles / page inline CSS)
   ============================================================================= */

:root {
	--forecast-text: #40433e;
	--forecast-text-muted: #8b9187;
	--forecast-accent: #567687;
	--forecast-accent-dark: #425e4c;
	--forecast-accent-darker: #40433e;
	--forecast-border: #d1d1d1;
	--forecast-positive: #77ab8a;
	--forecast-positive-dark: #5f876d;
	--forecast-negative: #8f4535;
	--forecast-transfer: #9378ab;
	--forecast-transfer-border: #F3B869;
	--forecast-transfer-text: #332B1F;
	--forecast-trial-bg: #f3b869;
	--forecast-trial-border: #737373;
	--forecast-trial-text: #332b1f;
	--forecast-commit-open: #c4c4c4;
	--forecast-commit-hover: #d49b0d;
	--forecast-commit-done-bg: rgba(212, 155, 13, 0.8);
	--forecast-piggy: #dadfd7;
	--forecast-piggy-hover: #bac2b4;
	--forecast-verified: #77ab8a;
	--forecast-white: #fff;
	--forecast-radius-sm: 0.2rem;
	--forecast-radius-md: 4px;
	--forecast-footer-gap: 8px;
	--forecast-footer-h: calc(2.6rem + var(--forecast-footer-gap));
	--forecast-day-min-h: 157px;
	--forecast-toolbar-active: #3c525e;
}

/* -----------------------------------------------------------------------------
   Action buttons (inactive / hover / active — spec sheet)
   ----------------------------------------------------------------------------- */

.forecast-page button.forecast-action-delete,
.forecast-page button.forecast-action-transfer,
.forecast-page button.forecast-action-ccpay,
.forecast-page button.forecast-action-savings,
.forecast-page button.forecast-action-loan,
.forecast-page button.forecast-action-edit,
.forecast-page button.forecast-action-add,
.forecast-page button.forecast-action-commit,
.forecast-page button.forecast-action-sandbag,
.forecast-page button.forecast-action-recalc,
.forecast-page button.forecast-action-save,
.forecast-page button.forecast-action-cancel,
.forecast-page button.forecast-action-close,
.forecast-page button.forecast-action-window-close {
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0.35rem;
	min-width: 2rem;
	min-height: 2rem;
	border: 1px solid transparent;
	border-radius: 4px;
	box-shadow: none;
	background: transparent;
	line-height: 1;
	vertical-align: middle;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.forecast-page button.forecast-action-delete { --fc-act-icon: #e06d53; --fc-act-font: #fff; }
.forecast-page button.forecast-action-transfer { --fc-act-icon: #9378ab; --fc-act-font: #fff; }
.forecast-page button.forecast-action-ccpay { --fc-act-icon: #f3b869; --fc-act-font: #332b1f; }
.forecast-page button.forecast-action-savings { --fc-act-icon: #8bc56a; --fc-act-font: #313430; }
.forecast-page button.forecast-action-loan { --fc-act-icon: #f3c6bb; --fc-act-font: #3d1e17; }
.forecast-page button.forecast-action-edit { --fc-act-icon: #6e96ab; --fc-act-font: #fff; }
.forecast-page button.forecast-action-add,
.forecast-page button.forecast-action-save { --fc-act-icon: #77ab8a; --fc-act-font: #fff; }
.forecast-page button.forecast-action-commit { --fc-act-icon: #d49b0d; --fc-act-font: #fff; }
.forecast-page button.forecast-action-sandbag { --fc-act-icon: #ab9778; --fc-act-font: #fff; }
.forecast-page button.forecast-action-recalc { --fc-act-icon: #8BBDD9; --fc-act-font: #fff; }

/* Inactive (always show brand icon colour — beats theme/Bootstrap disabled grey) */
.forecast-page button.forecast-action-delete,
.forecast-page button.forecast-action-transfer,
.forecast-page button.forecast-action-ccpay,
.forecast-page button.forecast-action-savings,
.forecast-page button.forecast-action-loan,
.forecast-page button.forecast-action-edit,
.forecast-page button.forecast-action-add,
.forecast-page button.forecast-action-save,
.forecast-page button.forecast-action-commit,
.forecast-page button.forecast-action-sandbag,
.forecast-page button.forecast-action-recalc {
	color: var(--fc-act-icon) !important;
	background: transparent !important;
	border-color: transparent !important;
	opacity: 1 !important;
}

/* Hover */
.forecast-page button.forecast-action-delete:hover,
.forecast-page button.forecast-action-transfer:hover,
.forecast-page button.forecast-action-ccpay:hover,
.forecast-page button.forecast-action-savings:hover,
.forecast-page button.forecast-action-loan:hover,
.forecast-page button.forecast-action-edit:hover,
.forecast-page button.forecast-action-add:hover,
.forecast-page button.forecast-action-save:hover,
.forecast-page button.forecast-action-commit:not(.forecast-commit-btn):hover,
.forecast-page button.forecast-action-sandbag:hover,
.forecast-page button.forecast-action-recalc:hover {
	background: var(--fc-act-icon) !important;
	color: var(--fc-act-font) !important;
	border-color: transparent !important;
	opacity: 1 !important;
}

/* Active / selected */
.forecast-page button.forecast-action-delete.forecast-action--active,
.forecast-page button.forecast-action-transfer.forecast-action--active,
.forecast-page button.forecast-action-ccpay.forecast-action--active,
.forecast-page button.forecast-action-savings.forecast-action--active,
.forecast-page button.forecast-action-loan.forecast-action--active,
.forecast-page button.forecast-action-edit.forecast-action--active,
.forecast-page button.forecast-action-add.forecast-action--active,
.forecast-page button.forecast-action-save.forecast-action--active,
.forecast-page button.forecast-action-commit.forecast-action--active,
.forecast-page button.forecast-action-sandbag.forecast-action--active,
.forecast-page button.forecast-action-recalc.forecast-action--active,
.forecast-page button.forecast-action-delete[aria-pressed="true"],
.forecast-page button.forecast-action-transfer[aria-pressed="true"],
.forecast-page button.forecast-action-ccpay[aria-pressed="true"],
.forecast-page button.forecast-action-savings[aria-pressed="true"],
.forecast-page button.forecast-action-loan[aria-pressed="true"],
.forecast-page button.forecast-action-edit[aria-pressed="true"],
.forecast-page button.forecast-action-add[aria-pressed="true"],
.forecast-page button.forecast-action-save[aria-pressed="true"],
.forecast-page button.forecast-action-commit[aria-pressed="true"],
.forecast-page button.forecast-action-sandbag[aria-pressed="true"],
.forecast-page button.forecast-action-recalc[aria-pressed="true"] {
	background: transparent !important;
	color: var(--fc-act-icon) !important;
	border-color: var(--fc-act-icon) !important;
}

.forecast-page button.forecast-action-cancel,
.forecast-page button.forecast-action-close,
.forecast-page button.forecast-action-window-close { color: #adadad; }
.forecast-page button.forecast-action-cancel:hover,
.forecast-page button.forecast-action-close:hover,
.forecast-page button.forecast-action-window-close:hover {
	background: #adadad;
	color: #595959;
	border-color: transparent;
}

.forecast-page button.forecast-action-window-close {
	margin-left: auto;
}

.forecast-page button[class^="forecast-action-"] svg,
.forecast-page button[class^="forecast-action-"] .feather,
.forecast-page button.forecast-action-savings .pe-7s-piggy,
.forecast-page button.forecast-action-sandbag .pe-7s-shopbag {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	stroke: currentColor !important;
	color: inherit !important;
}

/* Savings / Sandbag — Pe-icon-7 */
.forecast-page button.forecast-action-savings .pe-7s-piggy,
.forecast-page button.forecast-action-sandbag .pe-7s-shopbag {
	display: inline-block;
	font-size: 1rem;
	line-height: 1;
	font-weight: 900 !important;
	width: auto;
	height: auto;
}

.forecast-page button.forecast-action-recalc.forecast-recalc--busy {
	pointer-events: none;
	opacity: 0.85 !important;
}

.forecast-page button.forecast-action-recalc.forecast-recalc--busy svg,
.forecast-page button.forecast-action-recalc.forecast-recalc--busy .feather {
	animation: forecast-recalc-spin 0.85s linear infinite;
}

@keyframes forecast-recalc-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.forecast-page .forecast-recalc-toolbar-wrap {
	display: inline-flex;
	align-items: center;
	margin-right: 0.35rem;
	margin-left: 0;
	vertical-align: middle;
}

/* -----------------------------------------------------------------------------
   Page layout
   ----------------------------------------------------------------------------- */

/* Main container defaults (override theme Bootstrap utilities) */
.forecast-page .page-wrapper .content {
	padding-top: 10px;
	color: #40433e !important;
	--bs-body-color: #40433e !important;
	--bs-secondary-color: #8b9187 !important;
	--bs-border-color: #d1d1d1 !important;
	border-color: #d1d1d1 !important;
}

.forecast-page .page-wrapper .content .text-muted,
.forecast-page .page-wrapper .content .text-secondary,
.forecast-page .page-wrapper .content .text-body-secondary,
.forecast-page .page-wrapper .content small.text-muted,
.forecast-page .page-wrapper .content p.text-muted,
.forecast-page .page-wrapper .content .fs-12.text-muted,
.forecast-page .page-wrapper .content #forecast-detail-placeholder,
.forecast-page .page-wrapper .content #forecast-account-balances-placeholder {
	color: #8b9187 !important;
}

.forecast-page .page-wrapper .content .border,
.forecast-page .page-wrapper .content .border-top,
.forecast-page .page-wrapper .content .border-bottom,
.forecast-page .page-wrapper .content .border-start,
.forecast-page .page-wrapper .content .border-end,
.forecast-page .page-wrapper .content .border-light,
.forecast-page .page-wrapper .content .border-light-subtle,
.forecast-page .page-wrapper .content hr,
.forecast-page .page-wrapper .content .card,
.forecast-page .page-wrapper .content .card-header,
.forecast-page .page-wrapper .content .card-footer {
	border-color: #d1d1d1 !important;
}

@media (max-width: 991.96px) {
	.forecast-page .page-wrapper .content {
		padding-top: 8px;
	}
}

@media (min-width: 992px) {
	.forecast-page .forecast-sidebar-col {
		position: sticky;
		top: calc(65px + 8px);
		align-self: flex-start;
		z-index: 6;
		max-height: calc(100vh - 65px - 16px);
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.forecast-page .forecast-sidebar-col::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
}

.forecast-page .forecast-status {
	min-height: 1.1rem;
}

.forecast-page .forecast-sidebar h5,
.forecast-page .forecast-sidebar h6,
.forecast-page .forecast-modal-title {
	color: #40433e !important;
}

.forecast-page .forecast-modal-title--danger {
	color: var(--forecast-negative);
}

.forecast-page #forecastDeleteModal .modal-body,
.forecast-page #forecastDeleteModal .modal-footer {
	font-size: 0.8125rem;
}

.forecast-page .forecast-delete-copy {
	color: #4d555e;
	font-size: 0.875rem;
	line-height: 1.45;
}

.forecast-page .forecast-delete-item {
	color: #40433e;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.forecast-page .forecast-delete-warning {
	color: #ed6e61;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.forecast-series-scope-popover {
	position: fixed;
	z-index: 2000;
	min-width: 12.5rem;
	padding: 0.35rem 0;
	border: 1px solid #c8cdd3;
	border-radius: 0.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(28, 34, 40, 0.14);
}

.forecast-series-scope-popover[hidden] {
	display: none !important;
}

.forecast-series-scope-popover-title {
	padding: 0.35rem 0.85rem 0.25rem;
	color: #6b7280;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.forecast-series-scope-option {
	display: block;
	width: 100%;
	padding: 0.45rem 0.85rem;
	border: 0;
	background: transparent;
	color: #40433e;
	font-size: 0.8125rem;
	text-align: left;
	cursor: pointer;
}

.forecast-series-scope-option:hover,
.forecast-series-scope-option:focus {
	background: #eef4f8;
	color: #2f4858;
	outline: none;
}

.forecast-page .forecast-modal-divider {
	border-color: #d1d1d1 !important;
	opacity: 1;
}

.forecast-page .forecast-modal-section-title {
	color: #40433e !important;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.forecast-page #forecastAddModal .modal-body,
.forecast-page #forecastAddModal .modal-footer,
.forecast-page #forecastEditModal .modal-body,
.forecast-page #forecastEditModal .modal-footer {
	font-size: 0.8125rem;
}

.forecast-page #forecastAddModal .forecast-modal-section-title,
.forecast-page #forecastEditModal .forecast-modal-section-title {
	font-size: 0.75rem;
}

.forecast-page #forecastAddModal .form-label,
.forecast-page #forecastEditModal .form-label {
	color: #40433e !important;
	font-size: 0.8125rem;
}

.forecast-page #forecastAddModal .form-control,
.forecast-page #forecastAddModal .form-select,
.forecast-page #forecastAddModal .input-group-text,
.forecast-page #forecastEditModal .form-control,
.forecast-page #forecastEditModal .form-select,
.forecast-page #forecastEditModal .input-group-text {
	border-color: #d1d1d1 !important;
	color: #40433e !important;
	font-size: 0.8125rem;
}

.forecast-page #forecastAddModal .form-check-label,
.forecast-page #forecastEditModal .form-check-label {
	font-size: 0.8125rem;
}

.forecast-page #forecastAddModal .forecast-accounting-toggle .btn-outline-secondary,
.forecast-page #forecastEditModal .forecast-accounting-toggle .btn-outline-secondary {
	border-color: #d1d1d1 !important;
	color: #4d555e !important;
	font-size: 0.8125rem;
}

.forecast-page #forecastAddModal .forecast-accounting-toggle .btn-check:checked + .btn-outline-secondary,
.forecast-page #forecastEditModal .forecast-accounting-toggle .btn-check:checked + .btn-outline-secondary {
	background-color: #3c525e !important;
	border-color: #3c525e !important;
	color: #fff !important;
}

.forecast-page #forecastAddModal .forecast-modal-event-config,
.forecast-page #forecastEditModal .forecast-modal-event-config {
	align-items: stretch;
}

.forecast-page #forecastAddModal .forecast-modal-event-config-side,
.forecast-page #forecastEditModal .forecast-modal-event-config-side {
	min-width: 9.5rem;
	padding-right: 1rem;
	white-space: nowrap;
}

.forecast-page #forecastAddModal .forecast-modal-event-config-checks-col,
.forecast-page #forecastEditModal .forecast-modal-event-config-checks-col {
	min-width: 10.5rem;
	padding-top: 25px;
	padding-right: 1rem;
	white-space: nowrap;
}

.forecast-page #forecastAddModal .forecast-modal-event-config-notes-col,
.forecast-page #forecastEditModal .forecast-modal-event-config-notes-col {
	min-width: 0;
}

.forecast-page #forecastAddModal .forecast-modal-notes-field,
.forecast-page #forecastEditModal .forecast-modal-notes-field {
	height: auto;
	max-height: none;
	line-height: 1.5;
	resize: vertical;
}

/* Add / edit modals — full height content; scroll the page, not an inner panel */
.forecast-page #forecastAddModal .modal-dialog.forecast-modal-expand,
.forecast-page #forecastEditModal .modal-dialog.forecast-modal-expand {
	max-height: none;
	height: auto;
	margin-top: 1.75rem;
	margin-bottom: 1.75rem;
}

.forecast-page #forecastAddModal .modal-content,
.forecast-page #forecastEditModal .modal-content {
	overflow: visible;
	max-height: none;
}

.forecast-page #forecastAddModal .modal-body,
.forecast-page #forecastEditModal .modal-body {
	overflow: visible;
	max-height: none;
}

html.forecast-form-modal-open,
html.forecast-form-modal-open body {
	overflow: auto !important;
	padding-right: 0 !important;
}

html.forecast-form-modal-open #forecastAddModal.modal,
html.forecast-form-modal-open #forecastEditModal.modal {
	position: absolute;
	overflow: visible;
}

html.forecast-form-modal-open #forecastAddModal.modal.show,
html.forecast-form-modal-open #forecastEditModal.modal.show {
	display: block;
}

.forecast-page button.forecast-action-edit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

.forecast-page .forecast-detail-panel {
	position: relative;
	min-height: 12rem;
}

.forecast-page .forecast-detail-panel .forecast-commit-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
}

.forecast-page .forecast-detail-placeholder {
	color: #40433e;
	opacity: 0.65;
}

.forecast-page .forecast-detail-body {
	color: #40433e;
	font-size: 0.8125rem;
	line-height: 1.4;
}

.forecast-page .forecast-detail-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #40433e;
	margin-bottom: 0.65rem;
	line-height: 1.25;
}

.forecast-page .forecast-detail-line {
	color: #40433e;
	margin: 0;
}

.forecast-page .forecast-detail-lbl {
	font-weight: 600;
}

.forecast-page .forecast-detail-flags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.85rem;
	margin-top: 0.85rem;
	padding-top: 0.65rem;
	border-top: 1px solid #dce4e8;
}

.forecast-page .forecast-detail-flag {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: #40433e;
	font-size: 0.75rem;
	line-height: 1;
}

.forecast-page .forecast-detail-flag--toggle {
	cursor: pointer;
	user-select: none;
	pointer-events: auto;
}

.forecast-page .forecast-detail-flag--toggle svg,
.forecast-page .forecast-detail-flag--toggle .feather,
.forecast-page .forecast-detail-flag--toggle .forecast-detail-flag-label {
	pointer-events: none;
}

.forecast-page .forecast-detail-flag--toggle:focus-visible {
	outline: 1px dotted #95ada8;
	outline-offset: 2px;
}

.forecast-page .forecast-detail-flag-icon {
	width: 14px;
	height: 14px;
	stroke-width: 2.5px;
	flex-shrink: 0;
}

.forecast-page .forecast-detail-flag-icon--yes {
	color: #77ab8a;
	stroke: #77ab8a;
}

.forecast-page .forecast-detail-flag-icon--no {
	color: #e68a74;
	stroke: #e68a74;
}

.forecast-page .forecast-detail-flag-label {
	color: #40433e;
}

/* Payment detail commit toggle (matches legacy forecast calendar) */
.forecast-page button.forecast-commit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 4px 6px;
	margin: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	outline: none;
	box-shadow: none;
	min-width: 0;
	min-height: 0;
}

.forecast-page button.forecast-commit-btn .forecast-commit-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.forecast-page button.forecast-commit-btn .forecast-commit-ic-hover {
	display: none;
}

.forecast-page button.forecast-commit-btn:hover .forecast-commit-ic-default {
	display: none;
}

.forecast-page button.forecast-commit-btn:hover .forecast-commit-ic-hover {
	display: inline-flex;
}

.forecast-page button.forecast-commit-btn svg,
.forecast-page button.forecast-commit-btn .feather {
	width: 1.125rem;
	height: 1.125rem;
}

.forecast-page button.forecast-commit-btn.forecast-commit--open {
	color: var(--forecast-commit-open) !important;
	background: transparent !important;
	border-color: transparent !important;
}

.forecast-page button.forecast-commit-btn.forecast-commit--open svg,
.forecast-page button.forecast-commit-btn.forecast-commit--open .feather {
	stroke: var(--forecast-commit-open) !important;
	color: var(--forecast-commit-open) !important;
}

.forecast-page button.forecast-commit-btn.forecast-commit--open:hover {
	background: var(--forecast-commit-done-bg) !important;
	color: #fff !important;
	border-color: transparent !important;
	border-radius: 4px;
}

.forecast-page button.forecast-commit-btn.forecast-commit--open:hover svg,
.forecast-page button.forecast-commit-btn.forecast-commit--open:hover .feather {
	stroke: #fff !important;
	color: #fff !important;
}

.forecast-page button.forecast-commit-btn.forecast-commit--done {
	background: var(--forecast-commit-done-bg) !important;
	color: #fff !important;
	border-color: transparent !important;
	border-radius: 4px;
}

.forecast-page button.forecast-commit-btn.forecast-commit--done svg,
.forecast-page button.forecast-commit-btn.forecast-commit--done .feather {
	stroke: #fff !important;
	color: #fff !important;
}

.forecast-page button.forecast-commit-btn.forecast-commit--done:hover {
	background: transparent !important;
	color: var(--forecast-commit-open) !important;
	border-color: transparent !important;
}

.forecast-page button.forecast-commit-btn.forecast-commit--done:hover svg,
.forecast-page button.forecast-commit-btn.forecast-commit--done:hover .feather {
	stroke: var(--forecast-commit-open) !important;
	color: var(--forecast-commit-open) !important;
}

/* Account balances sidebar */
.forecast-page .forecast-acct-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.forecast-page .forecast-acct-section-title {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--forecast-accent);
	margin: 0 0 0.5rem;
}

.forecast-page .forecast-acct-lines {
	font-size: 0.8125rem;
}

.forecast-page .forecast-acct-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.35rem 0;
	border-bottom: 1px solid #d1d1d1;
}

.forecast-page .forecast-acct-line:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.forecast-page .forecast-acct-line-label {
	color: var(--forecast-text-muted);
	font-weight: 500;
}

.forecast-page .forecast-acct-line-amt {
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	text-align: right;
	flex-shrink: 0;
}

.forecast-page .forecast-acct-neg {
	color: var(--forecast-negative) !important;
}

.forecast-page .forecast-sidebar-detail.forecast-acct-section-box {
	min-height: 0;
}

.forecast-page .forecast-acct-total-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	font-size: 0.8125rem;
}

.forecast-page .forecast-acct-total-line .forecast-acct-line-amt {
	font-weight: 600;
}

/* Mini datepicker accents */
.forecast-page .forecast-mini .datepicker table td.day.forecast-mini-bal-neg {
	color: #8F4535 !important;
	position: relative;
}

.forecast-page .forecast-mini .datepicker table td.day.forecast-mini-has-cr {
	color: #77AB8A !important;
	position: relative;
}

.forecast-page .forecast-mini .datepicker table td.day.forecast-mini-bal-neg::before,
.forecast-page .forecast-mini .datepicker table td.day.forecast-mini-has-cr::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1.75rem;
	height: 1.75rem;
	max-width: 88%;
	max-height: 88%;
	border: 2px solid currentColor;
	border-radius: 50%;
	box-sizing: border-box;
	pointer-events: none;
	z-index: 0;
}

.forecast-page .forecast-mini .bootstrap-datetimepicker-widget table td.day.active,
.forecast-page .forecast-mini .bootstrap-datetimepicker-widget table td.day.active:hover {
	background-color: var(--forecast-border) !important;
	background-image: none !important;
	color: var(--forecast-text) !important;
	text-shadow: none !important;
}

/* -----------------------------------------------------------------------------
   FullCalendar (match forecast_calendar.php — single outer border only)
   ----------------------------------------------------------------------------- */

.forecast-page #forecast-calendar .fc-daygrid-body,
.forecast-page #forecast-calendar .fc-daygrid-body-balanced table,
.forecast-page #forecast-calendar .fc-daygrid-body-balanced tbody,
.forecast-page #forecast-calendar .fc-daygrid-body-balanced tr {
	overflow: visible !important;
}

.forecast-page #forecast-calendar .fc-scrollgrid,
.forecast-page #forecast-calendar .fc-scrollgrid-section,
.forecast-page #forecast-calendar .fc-scrollgrid-section-body,
.forecast-page #forecast-calendar .fc-scrollgrid-sync-table {
	overflow: visible !important;
}

.forecast-page #forecast-calendar .fc-theme-standard .fc-scrollgrid {
	border: 1px solid var(--forecast-border);
}

/* Year view (multiMonthYear) */
.forecast-page #forecast-calendar .fc-multimonth {
	border-color: var(--forecast-border) !important;
}

.forecast-page #forecast-calendar .fc-multimonth-title {
	color: #40433e !important;
	font-weight: 600;
}

.forecast-page #forecast-calendar .fc {
	--fc-border-color: var(--forecast-border);
	--fc-button-bg-color: var(--forecast-accent);
	--fc-button-border-color: var(--forecast-accent);
	--fc-button-hover-bg-color: var(--forecast-accent-dark);
	--fc-button-hover-border-color: var(--forecast-accent-dark);
	--fc-button-active-bg-color: var(--forecast-toolbar-active);
	--fc-button-active-border-color: var(--forecast-toolbar-active);
	--fc-today-bg-color: var(--forecast-white);
	--fc-forecast-footer-gap: var(--forecast-footer-gap);
	--fc-forecast-footer-h: var(--forecast-footer-h);
	--fc-forecast-day-frame-min: var(--forecast-day-min-h);
}

/* Toolbar — see forecasting.php inline block; duplicate rules for stylesheet-only load */
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-prev-button,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-next-button,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-today-button:not(.forecast-today-visible),
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastMonth-button:not(.fc-button-active),
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastYear-button:not(.fc-button-active) {
	background-color: #f7f7f7 !important;
	border-color: #f7f7f7 !important;
	color: #4d555e !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-prev-button:hover,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-next-button:hover,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastMonth-button:not(.fc-button-active):hover,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastYear-button:not(.fc-button-active):hover,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-today-button:not(.forecast-today-visible):hover {
	background-color: #3c525e !important;
	border-color: #3c525e !important;
	color: #fff !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastMonth-button.fc-button-active,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastYear-button.fc-button-active,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-today-button.forecast-today-visible {
	background-color: #3c525e !important;
	border-color: #3c525e !important;
	color: #fff !important;
}

/* Show/Hide hidden badges — eye-off (hidden) / eye (showing); hover previews opposite state */
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 28px !important;
	height: 27px !important;
	padding: 0.35rem 0.45rem !important;
	box-shadow: none !important;
	border: none !important;
	line-height: 1;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button .fc-showhidden-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button .fc-showhidden-ico svg,
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button .fc-showhidden-ico .feather {
	width: 14px;
	height: 14px;
	stroke-width: 2px;
	margin: 2px 0 0 1px !important;
}

/* HIDDEN — records not shown */
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button:not(.fc-button-active) {
	background: transparent !important;
	background-color: transparent !important;
	color: #c4c4c4 !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button:not(.fc-button-active) .fc-showhidden-ico--showing {
	display: none !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button:not(.fc-button-active):hover {
	background: #8bbdd9 !important;
	background-color: #8bbdd9 !important;
	border-radius: 4px !important;
	color: #fff !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button:not(.fc-button-active):hover .fc-showhidden-ico--hidden {
	display: none !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button:not(.fc-button-active):hover .fc-showhidden-ico--showing {
	display: inline-flex !important;
}

/* SHOWING — hidden records visible */
.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button.fc-button-active {
	background: #8bbdd9 !important;
	background-color: #8bbdd9 !important;
	border-radius: 4px !important;
	color: #fff !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button.fc-button-active .fc-showhidden-ico--hidden {
	display: none !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button.fc-button-active .fc-showhidden-ico--showing {
	display: inline-flex !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button.fc-button-active:hover {
	background: transparent !important;
	background-color: transparent !important;
	border-radius: 4px !important;
	color: #c4c4c4 !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button.fc-button-active:hover .fc-showhidden-ico--showing {
	display: none !important;
}

.forecast-page #forecast-calendar .fc-header-toolbar .fc-button.fc-forecastShowHidden-button.fc-button-active:hover .fc-showhidden-ico--hidden {
	display: inline-flex !important;
}

.forecast-page #forecast-calendar,
.forecast-page #forecast-calendar .fc {
	--fc-today-bg-color: var(--forecast-white);
}

.forecast-page #forecast-calendar .fc .fc-daygrid-day.fc-day-today,
.forecast-page #forecast-calendar .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-bg {
	background-color: var(--forecast-white) !important;
}

.forecast-page #forecast-calendar .fc-toolbar-title {
	color: var(--forecast-text);
	font-weight: 600;
}

.forecast-page #forecast-calendar .fc-col-header-cell-cushion,
.forecast-page #forecast-calendar .fc-daygrid-day-number {
	color: var(--forecast-accent);
}

.forecast-page #forecast-calendar .fc-daygrid-day-top {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	gap: 4px;
}

.forecast-page #forecast-calendar .fc-daygrid-day-top .fc-daygrid-day-number {
	margin-left: auto;
}

.forecast-page #forecast-calendar .fc-daygrid-day {
	vertical-align: top;
	position: relative;
	min-height: var(--forecast-day-min-h);
	overflow: visible !important;
}

.forecast-page #forecast-calendar .fc-daygrid-day-frame {
	position: relative;
	box-sizing: border-box;
	min-height: 0;
	height: auto;
	min-height: 100%;
	padding-bottom: var(--fc-forecast-footer-h);
	overflow: visible !important;
}

.forecast-page #forecast-calendar .fc-daygrid-body-balanced .fc-daygrid-day-events {
	top: 0 !important;
	bottom: var(--fc-forecast-footer-h) !important;
	left: 0 !important;
	right: 0 !important;
	overflow: visible;
}

.forecast-page #forecast-calendar .fc-forecast-day-footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	min-height: 1.5rem;
	padding: 2px 6px 3px;
	background: rgba(255, 255, 255, 0.96);
	font-variant-numeric: tabular-nums;
	z-index: 12;
	pointer-events: none;
	box-sizing: border-box;
	visibility: visible !important;
	opacity: 1 !important;
}

.forecast-page #forecast-calendar .fc-forecast-day-footer-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-evenly;
	width: 100%;
	min-width: 0;
	flex-wrap: nowrap;
	gap: 2px;
}

.forecast-page #forecast-calendar .fc-forecast-day-footer-sep {
	color: #ededed;
	font-weight: 400;
	font-size: 0.63rem;
	line-height: 1.2;
	padding: 0 0.15rem;
	align-self: flex-end;
	flex-shrink: 0;
	margin-bottom: 0.05rem;
}

.forecast-page #forecast-calendar .fc-forecast-day-footer-acct {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
	font-variant-numeric: tabular-nums;
	line-height: 1.15;
	text-align: center;
}

.forecast-page #forecast-calendar .fc-forecast-day-footer-acct-label {
	font-size: 0.48rem;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	white-space: nowrap;
}

.forecast-page #forecast-calendar .fc-forecast-day-footer-acct-amt {
	font-size: 0.63rem;
	font-weight: 600;
	line-height: 1.15;
	white-space: nowrap;
}

.forecast-page #forecast-calendar .fc-forecast-footer-scotia .fc-forecast-day-footer-acct-label,
.forecast-page #forecast-calendar .fc-forecast-footer-scotia .fc-forecast-day-footer-acct-amt {
	color: #ed6e61;
}

.forecast-page #forecast-calendar .fc-forecast-footer-visa .fc-forecast-day-footer-acct-label,
.forecast-page #forecast-calendar .fc-forecast-footer-visa .fc-forecast-day-footer-acct-amt {
	color: #686970;
}

.forecast-page #forecast-calendar .fc-forecast-footer-bmo .fc-forecast-day-footer-acct-label,
.forecast-page #forecast-calendar .fc-forecast-footer-bmo .fc-forecast-day-footer-acct-amt {
	color: #317397;
}

.forecast-page #forecast-calendar .fc-event-title.fc-sticky > .fc-forecast-badge-line {
	margin: 0;
	padding: 0;
}

.forecast-page #forecast-calendar .fc-forecast-badge-label-wrap {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge:hover {
	background: #dce4e8 !important;
	background-color: #dce4e8 !important;
	border: 1px solid #cfdadf !important;
	border-radius: 4px !important;
	color: #222f36 !important;
	box-shadow: none !important;
	font-size: 0.63rem;
	font-weight: 600;
	padding: 3px 3px 2px !important;
	margin-left: 8px;
	margin-right: 8px;
	cursor: grab;
	pointer-events: auto !important;
	touch-action: none;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge * {
	pointer-events: none !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner {
	color: inherit;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-event-dragging,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-event-dragging:hover {
	cursor: grabbing !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge .fc-event-main-frame,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge .fc-event-title {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.forecast-page #forecast-calendar .fc-forecast-badge-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	width: 100%;
	min-width: 0;
	line-height: 1.2;
	white-space: nowrap;
}

.forecast-page #forecast-calendar .fc-forecast-ev-item {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}

.forecast-page #forecast-calendar .fc-forecast-ev-amt {
	flex: 0 0 auto;
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge .fc-forecast-ev-amt {
	color: #222f36 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-forecast-badge-opening,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-forecast-badge-opening:hover {
	background: #ededed !important;
	background-color: #ededed !important;
	border: 1px solid #d1d1d1 !important;
	border-radius: 4px !important;
	color: #adadad !important;
	font-style: italic;
	padding: 3px 3px 2px !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-forecast-badge-opening .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-forecast-badge-opening .fc-forecast-ev-amt {
	color: #adadad !important;
	font-style: italic;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-badge.fc-forecast-badge-undisplayed {
	border-style: dashed !important;
	opacity: 0.88;
}

/* Open (uncommitted) events: shell receives drag; inner badge nodes do not */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-open,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-open:hover,
.forecast-page #forecast-calendar .fc-event.fc-event-draggable,
.forecast-page #forecast-calendar .fc-event.fc-event-draggable:hover {
	pointer-events: auto !important;
	cursor: grab !important;
	touch-action: none;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-open *,
.forecast-page #forecast-calendar .fc-event.fc-event-draggable * {
	pointer-events: none !important;
}

.forecast-page #forecast-calendar .fc-event.fc-event-dragging,
.forecast-page #forecast-calendar .fc-event.fc-event-dragging:hover {
	cursor: grabbing !important;
}

.forecast-page #forecast-calendar .fc-event:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event:not(.fc-forecast-ev-committed):active {
	padding: 3px 3px 2px !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed:active {
	background: transparent !important;
	border: none !important;
	border-color: transparent !important;
	box-shadow: none !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed .fc-event-main {
	width: 100%;
}

/* Committed badge text — must beat .page-wrapper .content { color: #40433e !important } */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed .fc-forecast-committed-amt {
	font-style: normal;
}

.forecast-page #forecast-calendar .fc-forecast-committed-line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem;
	width: 100%;
	box-sizing: border-box;
}

.forecast-page #forecast-calendar .fc-forecast-committed-item {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
}

.forecast-page #forecast-calendar .fc-forecast-committed-amt {
	flex: 0 0 auto;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-reconciliation.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-reconciliation.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-reconciliation.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-reconciliation.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #93998E !important;
	font-style: italic !important;
}

/* Loan — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #F7D47D !important;
	border-color: #F7D47D !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Loan — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed:active {
	background: #F8D98C !important;
	background-color: #F8D98C !important;
	border: 1px solid #F7D47D !important;
	border-color: #F7D47D !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #2B2003 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #2B2003 !important;
	stroke: #2B2003 !important;
	font-style: normal !important;
}

/* Loan badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-loan .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Savings — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #B2BBAB !important;
	border-color: #B2BBAB !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Savings — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed:active {
	background: #BAC2B4 !important;
	background-color: #BAC2B4 !important;
	border: 1px solid #B2BBAB !important;
	border-color: #B2BBAB !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #272C24 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #272C24 !important;
	stroke: #272C24 !important;
	font-style: normal !important;
}

/* Savings badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-savings .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Sandbag — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #B8A592 !important;
	border-color: #B8A592 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Sandbag — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed:active {
	background: #BEAD9C !important;
	background-color: #BEAD9C !important;
	border: 1px solid #B8A592 !important;
	border-color: #B8A592 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #17130F !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #17130F !important;
	stroke: #17130F !important;
	font-style: normal !important;
}

/* Sandbag badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-sandbag .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Draft — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #D9A3D1 !important;
	border-color: #D9A3D1 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Draft — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed:active {
	background: #DEAED7 !important;
	background-color: #DEAED7 !important;
	border: 1px solid #D9A3D1 !important;
	border-color: #D9A3D1 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #441C3E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #441C3E !important;
	stroke: #441C3E !important;
	font-style: normal !important;
}

/* Draft badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-draft .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Transfer — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #8E87A3 !important;
	border-color: #8E87A3 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Transfer — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed:active {
	background: #9790AA !important;
	background-color: #9790AA !important;
	border: 1px solid #8E87A3 !important;
	border-color: #8E87A3 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #fff !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #fff !important;
	stroke: #fff !important;
	font-style: normal !important;
}

/* Transfer badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-transfer .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Credit Card Payment — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #FFCD9B !important;
	border-color: #FFCD9B !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Credit Card Payment — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed:active {
	background: #FFD5AB !important;
	background-color: #FFD5AB !important;
	border: 1px solid #FFCD9B !important;
	border-color: #FFCD9B !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #3E1F00 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #3E1F00 !important;
	stroke: #3E1F00 !important;
	font-style: normal !important;
}

/* Credit Card Payment badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-ccpay .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Expense — not categorized (fallback; excludes accounts with dedicated badge styles) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #95ADA8 !important;
	border-color: #95ADA8 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — not categorized — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):active {
	background: #C4D2CF !important;
	background-color: #C4D2CF !important;
	border: 1px solid #95ADA8 !important;
	border-color: #95ADA8 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #2E3C39 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-committed-amt {
	color: #2E3C39 !important;
	stroke: #2E3C39 !important;
	font-style: normal !important;
}

/* Expense badge — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

/* Therapy item (fc_item contains "Therapy") — open (not committed) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed):active {
	background: #F3C6BB !important;
	background-color: #F3C6BB !important;
	border: 1px solid #F3C6BB !important;
	border-radius: 4px !important;
	box-shadow: none !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #A16153 !important;
	stroke: #A16153 !important;
	font-style: normal !important;
}

/* Therapy item — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed:active {
	background: #fff !important;
	background-color: #fff !important;
	border: none !important;
	border-color: transparent !important;
	box-shadow: none !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-event-main {
	color: #AF4F39 !important;
	font-style: normal !important;
}

/* Therapy item — item left, cost right (all states) */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy .fc-event-title {
	width: 100% !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy .fc-forecast-committed-line {
	display: flex !important;
	align-items: baseline !important;
	justify-content: space-between !important;
	gap: 0.35rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy .fc-forecast-committed-item {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-therapy .fc-forecast-committed-amt {
	flex: 0 0 auto !important;
	text-align: right !important;
	font-variant-numeric: tabular-nums !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-scotia-other.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-scotia-other.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-scotia-other.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-scotia-other.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #E68A74 !important;
	font-style: normal !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-bmo-other.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-bmo-other.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-bmo-other.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-committed-acct-bmo-other.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #8BBDD9 !important;
	font-style: normal !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-trial:not(.fc-forecast-ev-committed) {
	background-color: var(--forecast-trial-bg) !important;
	border: 1px solid var(--forecast-trial-border) !important;
	border-radius: var(--forecast-radius-md) !important;
	color: var(--forecast-trial-text) !important;
}

/* Income — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #C1D9CA !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Income — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed:active {
	background: #CBDFD2 !important;
	background-color: #CBDFD2 !important;
	border: 1px solid #C1D9CA !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #304E3B !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #304E3B !important;
	stroke: #304E3B !important;
	font-style: normal !important;
}

/* Expense — SB Cheq — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #F1BAAD !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — SB Cheq — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed:active {
	background: #F3C6BB !important;
	background-color: #F3C6BB !important;
	border: 1px solid #F1BAAD !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #404040 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #404040 !important;
	stroke: #404040 !important;
	font-style: normal !important;
}

/* Expense — SB Visa — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #E5E9ED !important;
	border-color: #E5E9ED !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — SB Visa — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed:active {
	background: #F8F9FA !important;
	background-color: #F8F9FA !important;
	border: 1px solid #E5E9ED !important;
	border-color: #E5E9ED !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #C4422C !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #C4422C !important;
	stroke: #C4422C !important;
	font-style: normal !important;
}

/* Expense — Bmo Cheq — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #D9EAF3 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — Bmo Cheq — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed:active {
	background: #D9EAF3 !important;
	background-color: #D9EAF3 !important;
	border: 1px solid #D9EAF3 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #22526C !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #22526C !important;
	stroke: #22526C !important;
	font-style: normal !important;
}

/* Expense — Figid Cheq — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #EE936A !important;
	border-color: #EE936A !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — Figid Cheq — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed:active {
	background: rgba(236, 137, 92, 0.8) !important;
	background-color: rgba(236, 137, 92, 0.8) !important;
	border: 1px solid #EE936A !important;
	border-color: #EE936A !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #501E08 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #501E08 !important;
	stroke: #501E08 !important;
	font-style: normal !important;
}

/* Expense — Bmo Visa — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #529DC6 !important;
	border-color: #529DC6 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — Bmo Visa — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed:active {
	background: #595959 !important;
	background-color: #595959 !important;
	border: 1px solid #515151 !important;
	border-color: #515151 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #C9DFF5 !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #C9DFF5 !important;
	stroke: #C9DFF5 !important;
	font-style: normal !important;
}

/* Expense — Bmo MC — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #529DC6 !important;
	border-color: #529DC6 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — Bmo MC — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed:active {
	background: #595959 !important;
	background-color: #595959 !important;
	border: 1px solid #515151 !important;
	border-color: #515151 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #FFD78F !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #FFD78F !important;
	stroke: #FFD78F !important;
	font-style: normal !important;
}

/* Expense — BMO LoC — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #529DC6 !important;
	border-color: #529DC6 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — BMO LoC — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed:active {
	background: rgba(94, 163, 202, 0.8) !important;
	background-color: rgba(94, 163, 202, 0.8) !important;
	border: 1px solid #529DC6 !important;
	border-color: #529DC6 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #fff !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #fff !important;
	stroke: #fff !important;
	font-style: normal !important;
}

/* Expense — Triangle — not committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed),
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed):hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed):active {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px dashed #833F31 !important;
	border-color: #833F31 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #40433E !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-committed-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-verified-check {
	color: #40433E !important;
	stroke: #40433E !important;
}

/* Expense — Triangle — committed */
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed:hover,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed:active {
	background: rgba(143, 69, 53, 0.8) !important;
	background-color: rgba(143, 69, 53, 0.8) !important;
	border: 1px solid #833F31 !important;
	border-color: #833F31 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	color: #fff !important;
}

.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-ev-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-ev-amt,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-badge-inner,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-event-main,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-event-title,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-badge-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-committed-line,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-committed-item,
.forecast-page #forecast-calendar .fc-event.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-committed-amt {
	color: #fff !important;
	stroke: #fff !important;
	font-style: normal !important;
}

.forecast-page #forecast-calendar .fc-forecast-verified-check {
	width: 0.75rem;
	height: 0.75rem;
	stroke: var(--forecast-verified);
	color: var(--forecast-verified);
	flex-shrink: 0;
}

.forecast-page #forecast-calendar .fc-forecast-badge-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem;
	width: 100%;
	overflow: hidden;
}

.forecast-page #forecast-calendar .fc-forecast-day-transfers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 0;
	margin-right: 0;
	padding: 0 2px;
	color: var(--forecast-transfer);
	cursor: help;
	pointer-events: auto;
	line-height: 1;
}

.forecast-page #forecast-calendar .fc-forecast-day-transfers svg {
	width: 14px;
	height: 14px;
	stroke: var(--forecast-transfer);
}

.forecast-page #forecast-calendar .fc-forecast-day-liquidity-piggy {
	margin-left: 8px;
}

.forecast-page #forecast-calendar .fc-forecast-day-liquidity-piggy svg,
.forecast-page #forecast-calendar .fc-forecast-day-liquidity-piggy .feather {
	width: 15px;
	height: 15px;
	stroke: var(--forecast-piggy);
	color: var(--forecast-piggy);
}

/* ===== Year view only — compact marks (month view unchanged) ===== */
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-day-footer,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-day-transfers,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-day-liquidity-piggy {
	display: none !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-more-link,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-day-bottom,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-day-events {
	display: none !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-day {
	min-height: 3.5rem !important;
	height: auto !important;
	cursor: pointer;
	overflow: hidden !important;
	position: relative;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other.fc-daygrid-day {
	min-height: 0 !important;
	cursor: default;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-day-frame {
	display: flex !important;
	flex-direction: column !important;
	min-height: 3.25rem !important;
	height: 100% !important;
	padding: 1px 2px 2px !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other .fc-daygrid-day-frame {
	min-height: 0 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-day-top {
	flex: 0 0 auto;
	padding: 0 1px !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-day-number {
	font-size: 0.62rem;
	padding: 0 2px !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-marks {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-wrap: wrap !important;
	align-content: flex-start !important;
	align-items: flex-start !important;
	gap: 1px 2px !important;
	margin: 0 !important;
	padding: 1px 1px 0 !important;
	min-height: 2rem !important;
	max-height: 100%;
	overflow: hidden !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other .fc-forecast-year-day-marks {
	display: none !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other .fc-forecast-year-day-mark,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other .fc-daygrid-day-events,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other .fc-daygrid-event-harness,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-day-other .fc-event {
	display: none !important;
	visibility: hidden !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: flex-start;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 0;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-event-harness,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-daygrid-event-harness-abs {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	margin: 0 !important;
	width: auto !important;
	max-width: none !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-event.fc-forecast-badge,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-event.fc-forecast-badge:hover {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	width: auto !important;
	font-size: 10px;
	line-height: 1;
	cursor: pointer;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-event.fc-forecast-badge .fc-event-main,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-event.fc-forecast-badge .fc-event-main-frame,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-event.fc-forecast-badge .fc-event-title {
	padding: 0 !important;
	margin: 0 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-mark,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-popover-row .fc-forecast-year-mark {
	display: inline-block;
	width: 4px;
	height: 9px;
	border-radius: 999px;
	background-color: currentColor;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	vertical-align: top;
	flex-shrink: 0;
	pointer-events: none;
}

/* Strip month-badge chrome from year-view calendar marks — colour lives on the pill only */
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-badge,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-badge:hover,
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-badge:active {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	border-color: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

/* Year day popover — click day cell to open */
.forecast-page #forecast-calendar .fc-forecast-year-day-popover {
	position: fixed;
	z-index: 10050;
	min-width: 12rem;
	max-width: min(18rem, calc(100vw - 1.5rem));
	background: #fff;
	border: 1px solid var(--forecast-border, #dce4e8);
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(34, 47, 54, 0.16);
	overflow: hidden;
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover[hidden] {
	display: none !important;
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.45rem 0.55rem;
	background: #f7f7f7;
	border-bottom: 1px solid var(--forecast-border, #dce4e8);
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover-title {
	font-size: 0.78rem;
	font-weight: 600;
	color: #40433e;
	line-height: 1.2;
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover-close {
	appearance: none;
	border: none;
	background: transparent;
	color: #4d555e;
	font-size: 1.1rem;
	line-height: 1;
	padding: 0 0.15rem;
	cursor: pointer;
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover-close:hover {
	color: #222f36;
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover-body {
	max-height: min(16rem, 50vh);
	overflow: auto;
	padding: 0.35rem 0.45rem;
}

.forecast-page #forecast-calendar .fc-forecast-year-day-popover-empty {
	font-size: 0.72rem;
	color: #6b7280;
	padding: 0.25rem 0.1rem;
}

.forecast-page #forecast-calendar .fc-forecast-year-popover-row {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	width: 100%;
	margin: 0;
	padding: 0.28rem 0.2rem;
	border: none !important;
	border-radius: 3px;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	text-align: left;
	cursor: pointer;
	font-size: 0.72rem;
	line-height: 1.25;
	font-style: normal !important;
}

.forecast-page #forecast-calendar .fc-forecast-year-popover-row:hover {
	background: #f3f6f8 !important;
	background-color: #f3f6f8 !important;
}

/* Badge type classes live on the mark wrapper only — never month-badge chrome */
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark {
	display: inline-flex;
	flex-shrink: 0;
	align-items: flex-start;
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 0;
	line-height: 0;
}

.forecast-page #forecast-calendar .fc-forecast-year-popover-row .fc-forecast-year-mark {
	flex: 0 0 auto;
	font-size: 0;
	margin-top: 0.15rem;
}

.forecast-page #forecast-calendar .fc-forecast-year-popover-item {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #40433e !important;
}

.forecast-page #forecast-calendar .fc-forecast-year-popover-amt {
	flex: 0 0 auto;
	font-variant-numeric: tabular-nums;
	color: #40433e !important;
	white-space: nowrap;
}

/* Year mark pill colours — calendar dots + popover marks (badge classes never on row/button) */
.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-badge.fc-forecast-badge-opening .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-badge-opening .fc-forecast-year-mark {
	color: #d1d1d1 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-income:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #c1d9ca !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-income.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #cbdfd2 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-loan:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #f7d47d !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-loan.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #f8d98c !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-savings:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #b2bbab !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-savings.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #bac2b4 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-sandbag:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #b8a592 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-sandbag.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #bead9c !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-draft:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #d9a3d1 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-draft.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #deaed7 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-transfer:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #8e87a3 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-transfer.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #9790aa !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-ccpay:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #ffcd9b !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-ccpay.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #ffd5ab !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle):not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #95ada8 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-committed:not(.fc-forecast-ev-acct-scotia-chq):not(.fc-forecast-ev-acct-scotia-visa):not(.fc-forecast-ev-acct-bmo-chq):not(.fc-forecast-ev-acct-figid):not(.fc-forecast-ev-acct-bmo-visa):not(.fc-forecast-ev-acct-bmo-mc):not(.fc-forecast-ev-acct-bmo-loc):not(.fc-forecast-ev-acct-triangle) .fc-forecast-year-mark {
	color: #c4d2cf !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #f1baad !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-chq.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #f3c6bb !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	background: radial-gradient(ellipse at center, #e5e9ed 38%, #ed6e61 100%) !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: transparent !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-scotia-visa.fc-forecast-ev-committed .fc-forecast-year-mark {
	background: radial-gradient(ellipse at center, #f8f9fa 38%, #ed6e61 100%) !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: transparent !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #d9eaf3 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-chq.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #d9eaf3 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-figid:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #ee936a !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-figid.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #ec895c !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #529dc6 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-visa.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #595959 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #529dc6 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-mc.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #595959 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #529dc6 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-bmo-loc.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #5ea3ca !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #833f31 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-expense.fc-forecast-ev-acct-triangle.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #8f4535 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-therapy:not(.fc-forecast-ev-committed) .fc-forecast-year-mark {
	color: #f3c6bb !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-therapy.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #af4f39 !important;
}

.forecast-page #forecast-calendar.fc-forecast-year-view .fc-forecast-year-day-mark.fc-forecast-ev-reconciliation.fc-forecast-ev-committed .fc-forecast-year-mark,
.forecast-page #forecast-calendar .fc-forecast-year-popover-mark.fc-forecast-ev-reconciliation.fc-forecast-ev-committed .fc-forecast-year-mark {
	color: #93998e !important;
}
