@layer SP {
	:root {
		--ButtonBorderRadius: 5px;
		--ButtonBorder: 1px solid;
		--ButtonFontSize: 0.9rem;
		--ButtonFontWeight: 700;
		--ButtonTransision: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
		--ButtonPaddingHorizontal: 0.7rem;
		--ButtonPaddingVertical: 0.6rem;
		--ButtonPadding: var(--ButtonPaddingVertical) var(--ButtonPaddingHorizontal);
		--CirclePadding: 1rem;
		--ButtonMargin: 4px 3px;
		--BorderRadius: 4px;
		--InputMarginHorizontal: 0;
		--InputMarginVertical: 8px;
		--InputPadding: 6px 10px;
		--InputMargin: var(--InputMarginVertical) var(--InputMarginHorizontal);
		--InputBorderColor: #ced4da;
		--InputBorderHoverColor: #909499;
		--InputBackgroundColor: #fafafa;
		--InputFocusBoxShadow: var(--PrimaryColor) 0px 0px 0px 3.2px;
		--DefaultMargin: 1rem 0;
		--FontSize: 1em;
		--font-family: 'Roboto', sans-serif;
		--font-feature-settings: normal;
		--sp-h1-font-size: 1.80rem;
		--sp-h1-font-size: calc(1rem * pow(1.125, 5));
		--sp-h2-font-size: 1.60rem;
		--sp-h2-font-size: calc(1rem * pow(1.125, 4));
		--sp-h3-font-size: 1.42rem;
		--sp-h3-font-size: calc(1rem * pow(1.125, 3));
		--sp-h4-font-size: 1.27rem;
		--sp-h4-font-size: calc(1rem * pow(1.125, 2));
		--sp-h5-font-size: 1.13rem;
		--sp-h5-font-size: calc(1rem * pow(1.125, 1));
		--sp-h6-font-size: 1rem;
		--sp-h6-font-size: calc(1rem * pow(1.125, 0));
		--sp-content-max-width: 1920px;
		--sp-content-width: 100%;
		--sp-footer-gap: 1rem;
		--sp-footer-background-color: var(--FooterBackgroundColor, #303030);
		--sp-footer-color: var(--FooterTextColor, #fafafa);
		--sp-footer-heading-color: var(--FooterHeaderColor, --PrimaryColor, #a9d42d);
	}

	html, body {
		min-height: 100%;
		min-height: 100dvh;
		font-size: var(--FontSize);
	}

	html {
		margin: 0;
	}

	body {
		margin: 0;
		width: 100%;
		background-color: var(--BackgroundColor);
		background-image: var(--BackgroundImageUrl);
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		font-family: var(--font-family);
		color: var(--sp-pv-text-color);
		overflow-y: auto;
	}

	label {
		color: var(--FontColor);
	}

	body.ModalOpen {
		overflow-y: hidden;
		position: fixed;
	}

	#Background {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
	}

	.construction-banner {
		background-color: #d9b226;
		padding: 5px;
	}
	.construction-banner-title {
		color: white;
		text-align: center;
		margin: 0;
	}

	.bughunter-banner {
		background-color:#d92626;
		padding: 5px;
	}
	.bughunter-banner-title {
		color: white;
		text-align: center;
		margin: 0;
	}

	/* Content styles */
	.sp-content {
		flex-grow: 1;
		border: 1px solid var(--BorderColor);
		border-top: 0;
		background: var(--sp-pv-content-background);
		width: var(--sp-content-width);
		max-width: var(--sp-content-max-width);
		min-height: 400px;
		height: auto;
		padding: 1rem 1.5rem;
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
		display: block;
		box-shadow: 0 2px 10px var(--BoxShadowColor);
		box-sizing: border-box;
	}

	/* Header styles */
	h1, h2, h3, h4, h5, h6 {
		color: var(--ContentHeaderColor);
		margin: var(--DefaultMargin);
		font-weight: bold;
	}

	h1 {
		font-size: var(--sp-h1-font-size);
	}

	h2 {
		font-size: var(--sp-h2-font-size);
	}

	h3 {
		font-size: var(--sp-h3-font-size);
	}

	h4 {
		font-size: var(--sp-h4-font-size);
	}

	h5 {
		font-size: var(--sp-h5-font-size);
	}

	h6 {
		font-size: var(--sp-h6-font-size);
	}

	hr {
		border: 0;
		height: 1px;
		background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--PrimaryColor), rgba(0, 0, 0, 0));
	}

	hr.solid {
		border: 0;
		height: 1px;
		width: 100%;
		background-color: var(--PrimaryColor);
	}

	.StylizedTable {
		border-collapse: collapse;
		width: 100%;
		table-layout: fixed;
		border-radius: var(--BorderRadius);
		overflow: hidden;
	}

	.StylizedTable td, .StylizedTable th {
		word-wrap: break-word;
		word-break: break-word;
		white-space: normal;
	}

	.StylizedTable th {
		padding: 0.75rem 1rem;
		background: var(--PrimaryColor);
		border-color: var(--sp-pv-zinc-200);
		border-style: solid;
		border-width: 0 0 1px 0;
		color: var(--PrimaryTextColor);
		font-weight: 600;
		text-align: start;
	}

	.StylizedTable td {
		text-align: start;
		border-color: var(--sp-pv-zinc-200);
		border-style: solid;
		border-width: 0 0 1px 0;
		padding: 0.75rem 1rem;
	}

	/**
	 * Table hover styles
	 */
	.StylizedTable tr:hover,
	.StylizedTable tbody tr:hover {
		background-color: var(--TableHoverColor);
	}

	table.table-sticky thead,
	table.table-sticky tfoot {
		position: sticky;
		z-index: 1;
	}

	table.table-sticky thead {
		inset-block-start: 0;
	}

	table.table-sticky tfoot {
		inset-block-end: 0;
	}

	/**
	 * Table no border styles
	 */
	.table-no-border, .table-no-border th, .table-no-border td {
		border: none;
	}

	/**
	 * Table striped styles
	 */
	.table-striped tbody tr:nth-child(odd) {
		background-color: var(--BackgroundColorDarker);
	}

	.table-striped tbody tr:nth-child(even) {
		background-color: var(--BackgroundColor);
	}

	.layout-auto {
		table-layout: auto;
	}

	.layout-auto td, .layout-auto th {
		word-break: normal;
	}

	input:not([type=radio]), select, textarea {
		padding: var(--InputPadding);
		margin: var(--InputMargin);
		display: inline-block;
		border: 1px solid var(--InputBorderColor);
		border-radius: var(--BorderRadius);
		box-sizing: border-box;
		background-color: var(--InputBackgroundColor);
		color: var(--FontColor);
	}

	input.button,
	.BadButton,
	.button.danger,
	.Button.danger,
	.button,
	.Button {
		align-items: center;
		background-color: var(--ButtonColor);
		border-radius: var(--ButtonBorderRadius);
		border: var(--ButtonBorder);
		border-color: var(--ButtonColor);
		box-sizing: border-box;
		color: var(--ButtonFontColor);
		cursor: pointer;
		display: inline-flex;
		font-size: var(--ButtonFontSize);
		font-weight: var(--ButtonFontWeight);
		overflow: hidden;
		padding: var(--ButtonPadding);
		position: relative;
		text-align: center;
		transition: var(--ButtonTransision);
		user-select: none;
		vertical-align: middle;
		margin: var(--ButtonMargin);
		gap: var(--ButtonPaddingHorizontal);
		justify-content: center;
	}

	.button.secondary,
	.Button.secondary {
		background-color: var(--SecondaryColor);
		border-color: var(--SecondaryColor);
		color: var(--SecondaryTextColor);
	}

	.button.success,
	.Button.success {
		background-color: var(--SuccessColor);
		border-color: var(--SuccessColor);
		color: var(--SuccessTextColor);
	}

	.button.info,
	.Button.info {
		background-color: var(--InfoColor);
		border-color: var(--InfoColor);
		color: var(--InfoTextColor);
	}

	.button.warning,
	.Button.warning {
		background-color: var(--WarningColor);
		border-color: var(--WarningColor);
		color: var(--WarningTextColor);
	}

	.button.help,
	.Button.help {
		background-color: var(--HelpColor);
		border-color: var(--HelpColor);
		color: var(--HelpTextColor);
	}

	.BadButton,
	.button.danger,
	.Button.danger {
		background-color: var(--DangerColor);
		border-color: var(--DangerColor);
		border-radius: var(--ButtonBorderRadius);
		color: var(--ButtonFontColor);
	}

	.button.outlined,
	.Button.outlined {
		background: none;
		color: var(--ButtonColor);
	}

	.button.outlined.secondary,
	.Button.outlined.secondary {
		color: var(--SecondaryColor);
	}

	.button.outlined.success,
	.Button.outlined.success {
		color: var(--SuccessColor);
	}

	.button.outlined.info,
	.Button.outlined.info {
		color: var(--InfoColor);
	}

	.button.outlined.warning,
	.Button.outlined.warning {
		color: var(--WarningColor);
	}

	.button.outlined.help,
	.Button.outlined.help {
		color: var(--HelpColor);
	}

	.button.outlined.danger,
	.Button.outlined.danger {
		color: var(--DangerColor);
	}

	.button:focus,
	.Button:focus {
		outline: none;
		box-shadow: 0 0 0 2px var(--PrimaryTextColor), 0 0 0 4px var(--PrimaryColor);
	}

	.button.secondary:focus,
	.Button.secondary:focus {
		box-shadow: 0 0 0 2px var(--SecondaryTextColor), 0 0 0 4px var(--SecondaryColor);
	}

	.button.success:focus,
	.Button.success:focus {
		box-shadow: 0 0 0 2px var(--SuccessTextColor), 0 0 0 4px var(--SuccessColor);
	}

	.button.info:focus,
	.Button.info:focus {
		box-shadow: 0 0 0 2px var(--InfoTextColor), 0 0 0 4px var(--InfoColor);
	}

	.button.warning:focus,
	.Button.warning:focus {
		box-shadow: 0 0 0 2px var(--WarningTextColor), 0 0 0 4px var(--WarningColor);
	}

	.button.help:focus,
	.Button.help:focus {
		box-shadow: 0 0 0 2px var(--HelpTextColor), 0 0 0 4px var(--HelpColor);
	}

	.button.danger:focus,
	.Button.danger:focus {
		box-shadow: 0 0 0 2px var(--DangerTextColor), 0 0 0 4px var(--DangerColor);
	}

	.button:hover,
	.Button:hover {
		background-color: var(--ButtonHoverColor);
		border-color: var(--ButtonHoverColor);
	}

	.button.secondary:hover,
	.Button.secondary:hover {
		background-color: var(--DarkerSecondaryColor);
		border-color: var(--DarkerSecondaryColor);
	}

	.button.success:hover,
	.Button.success:hover {
		background-color: var(--DarkerSuccessColor);
		border-color: var(--DarkerSuccessColor);
	}

	.button.info:hover,
	.Button.info:hover {
		background-color: var(--DarkerInfoColor);
		border-color: var(--DarkerInfoColor);
	}

	.button.warning:hover,
	.Button.warning:hover {
		background-color: var(--DarkerWarningColor);
		border-color: var(--DarkerWarningColor);
	}

	.button.help:hover,
	.Button.help:hover {
		background-color: var(--DarkerHelpColor);
		border-color: var(--DarkerHelpColor);
	}

	.BadButton:hover,
	.button.danger:hover,
	.Button.danger:hover {
		background-color: var(--DangerColor-600);
		border-color: var(--DangerColor-600);
	}

	button[disabled], .button:disabled, .button.disabled, .button.Disabled,
	.Button[disabled], .Button:disabled, .Button.disabled, .Button.Disabled {
		cursor: default;
		opacity: 0.4;
		pointer-events: none;
	}

	.button.transparent,
	.Button.transparent {
		background: transparent;
		border-color: transparent;
		color: var(--PrimaryColor);
	}

	.button.transparent.secondary,
	.Button.transparent.secondary {
		color: var(--SecondaryColor);
	}

	.button.transparent.success,
	.Button.transparent.success {
		color: var(--SuccessColor);
	}

	.button.transparent.info,
	.Button.transparent.info {
		color: var(--InfoColor);
	}

	.button.transparent.warning,
	.Button.transparent.warning {
		color: var(--WarningColor);
	}

	.button.transparent.help,
	.Button.transparent.help {
		color: var(--HelpColor);
	}

	.button.transparent.danger,
	.Button.transparent.danger {
		color: var(--DangerColor);
	}

	.button.transparent:hover,
	.Button.transparent:hover {
		background: rgba(255, 255, 255, 0.5);
	}

	.button.transparent:focus,
	.Button.transparent:focus {
		outline: none;
		box-shadow: 0 0 0 2px var(--PrimaryTextColor), 0 0 0 4px var(--PrimaryColor);
	}

	.button.transparent.secondary:focus,
	.Button.transparent.secondary:focus {
		box-shadow: 0 0 0 2px var(--SecondaryTextColor), 0 0 0 4px var(--SecondaryColor);
	}

	.button.transparent.success:focus,
	.Button.transparent.success:focus {
		box-shadow: 0 0 0 2px var(--SuccessTextColor), 0 0 0 4px var(--SuccessColor);
	}

	.button.transparent.info:focus,
	.Button.transparent.info:focus {
		box-shadow: 0 0 0 2px var(--InfoTextColor), 0 0 0 4px var(--InfoColor);
	}

	.button.transparent.warning:focus,
	.Button.transparent.warning:focus {
		box-shadow: 0 0 0 2px var(--WarningTextColor), 0 0 0 4px var(--WarningColor);
	}

	.button.transparent.help:focus,
	.Button.transparent.help:focus {
		box-shadow: 0 0 0 2px var(--HelpTextColor), 0 0 0 4px var(--HelpColor);
	}

	.button.transparent.danger:focus,
	.Button.transparent.danger:focus {
		box-shadow: 0 0 0 2px var(--DangerTextColor), 0 0 0 4px var(--DangerColor);
	}

	.circle {
		aspect-ratio: 1;
		border-radius: 50%;
		padding: var(--CirclePadding);
	}

	.circle.small {
		padding: calc(var(--CirclePadding) / 2);
		margin: 0;
	}

	.button.dropdown-button,
	.Button.dropdown-button {
		border-radius: 0 var(--ButtonBorderRadius) var(--ButtonBorderRadius) 0;
		margin: 0;
	}

	.button:not(input),
	.Button:not(input),
	.button.danger:not(input),
	.Button.danger:not(input) {
		padding: var(--ButtonPaddingVertical) 0;
	}

	.button::before,
	.Button::before {
		content: '';
	}

	.button::after,
	.Button::after {
		content: '';
	}

	details * .ShowOnOpen,
	details * .ShowOnOpen {
		display: none;
	}

	details[open] * .ShowOnOpen,
	details[open] * .ShowOnOpen {
		display: initial;
	}

	details * .ShowOnClose,
	details * .ShowOnClose {
		display: initial;
	}

	details[open] * .ShowOnClose,
	details[open] * .ShowOnClose {
		display: none;
	}

	.BigButton {
		padding: 1rem;
		font-size: 1.3rem;
		box-sizing: border-box;
	}

	.text-success, .SuccessMessage {
		color: var(--SuccessColor);
	}

	.text-danger, .ErrorMessage {
		color: var(--DangerColor);
	}

	@-webkit-keyframes fadein {
		from {
			top: 0;
			opacity: 0;
		}
		to {
			top: 30px;
			opacity: 1;
		}
	}

	@keyframes fadein {
		from {
			top: 0;
			opacity: 0;
		}
		to {
			top: 30px;
			opacity: 1;
		}
	}

	@-webkit-keyframes fadeout {
		from {
			top: 30px;
			opacity: 1;
		}
		to {
			top: 0;
			opacity: 0;
		}
	}

	@keyframes fadeout {
		from {
			top: 30px;
			opacity: 1;
		}
		to {
			top: 0;
			opacity: 0;
		}
	}

	a {
		text-decoration: none;
		color: var(--PrimaryColor);
	}

	.PaginationControls {
	}

	.PaginationControls a {
		color: var(--PrimaryColor);
	}

	.BorderTable {
		border: 1px solid black;
		border-collapse: collapse;
	}

	.BorderTable td, .BorderTable th {
		border: 1px solid black;
		padding: 10px;
	}

	.Modal {
		overflow-x: hidden;
		overflow-y: auto;
		display: none;
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}

	.ModalContent {
		background-color: var(--BackgroundColor);
		margin: auto;
		padding: 25px;
		border: 1px solid var(--BorderColor);
		width: 800px;
		border-radius: 10px;
		position: relative;
	}

	.GenericModalContent {
		margin-top: 1em;
	}

	.CloseModal {
		color: #aaaaaa;
		font-weight: bold;
		position: absolute;
		top: 0;
		right: 0.25em;
		font-size: 3em;
		z-index: 999;
	}

	.CloseButton {
		position: relative;
		width: 2rem;
		height: 2rem;
		background: none;
		border: none;
		padding: 0.1rem;
		cursor: pointer;
		color: #aaa;
		font-size: 3rem;
		font-family: initial;
	}

	.CloseButton:hover {
		color: #333;
	}

	.CloseButton::before {
		content: '\d7';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		line-height: 2rem;
	}

	.CloseX {
		color: #D60B52;
		font-size: 20px;
		font-weight: bold;
		cursor: pointer;
	}

	.CloseModal:hover,
	.CloseModal:focus {
		color: #000;
		text-decoration: none;
		cursor: pointer;
	}

	.Collapsible {
		padding: 0 18px;
		display: none;
		overflow: hidden;
	}

	pre {
		font-size: 1rem;
		white-space: pre-wrap;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.hover_img a {
		position: relative;
	}

	.hover_img a span {
		position: absolute;
		display: none;
		z-index: 99;
	}

	.hover_img a:hover span {
		display: block;
	}

	.OULink {
		cursor: pointer;
	}

	.OULink:hover {
		color: white;
	}

	.DownArrow {
		border: solid var(--NavigationFontColor);
		border-width: 0 3px 3px 0;
		display: inline-block;
		padding: 5px;
		margin: 3px;
		transition: transform 0.3s;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}

	.UpArrow {
		border: solid var(--NavigationFontColor);
		border-width: 0 3px 3px 0;
		display: inline-block;
		padding: 5px;
		margin: 3px;
		transition: transform 0.3s;
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}

	.ModalLoaderContainer {
		text-align: center;
	}

	.Loader {
		border: 5px solid #f3f3f3; /* Light grey */
		border-top: 5px solid #3498db; /* Blue */
		border-radius: 50%;
		width: 2rem;
		height: 2rem;
		animation: spin 0.5s linear infinite;
	}

	.Loader.Big {
		width: 5em;
		height: 5em;
		border-width: 1em;
	}

	.Center {
		margin: 1em auto;
	}

	@keyframes spin {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(360deg);
		}
	}

	.SearchArrow {
		margin-left: 5px;
	}

	.SortableColumn {
		cursor: pointer;
	}

	#LoginArea {
		background: var(--ContentBackground);
		padding: 10px;
		margin-top: 5%;
		margin-left: auto;
		margin-right: auto;
		min-width: 450px;
		max-width: 720px;
		width: 40%;
		min-height: 400px;
		height: auto;
		border-radius: 15px 15px 15px 15px;
		display: block;
		box-shadow: 0px 2px 10px var(--BoxShadowColor);
		text-align: center;
		border: 1px solid var(--BorderColor);
	}

	.LoginLogo {
		width: 75%;
		max-width: 500px;
	}

	.login-otp-input {
		width: 3rem;
		height: 3rem;
		font-size: 2rem;
		text-align: center;
	}

	input:disabled, select:disabled, textarea:disabled {
		background-color: var(--InputBackgroundColor);
	}

	input:focus-visible,
	select:focus-visible,
	textarea:focus-visible {
		box-shadow: var(--InputFocusBoxShadow);
		border-radius: var(--BorderRadius);
		outline: none;
	}

	input,
	select,
	textarea {
		transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
	}

	input[type=range] {
		padding: 0;
	}

	::placeholder {
		color: var(--FontColor);
		opacity: 75%;
	}

	.InfoIcon {
		display: inline;
	}

	.InfoIcon:hover {
		cursor: pointer;
	}

	.ObjectListing {
		margin-top: 5px;
		max-height: 250px;
		overflow-y: auto;
	}

	.HistoryCollapseRow {
		visibility: collapse;
	}

	.HistoryUncollapseRow {
		visibility: inherit;
	}

	div.input-explanation {
		pointer-events: none;
		position: absolute;
		width: max-content;
		padding: 4px 10px;
		background-color: var(--BackgroundColor);
		filter: brightness(70%);
		border-radius: var(--BorderRadius);
		z-index: 99;
		font-size: 0.75em;
		margin-top: -5em;
	}

	input ~ div.input-explanation {
		display: none;
	}

	input:hover ~ div.input-explanation, input:focus ~ div.input-explanation {
		display: block;
	}

	.FlexSpacer, .FlexSpacerNoBreak {
		flex-grow: 1;
	}

	.FlexBreak {
		flex-basis: 100%;
	}

	.InfoModalNavigation {
		display: flex;
		flex-wrap: wrap;
	}

	.SimpleEditForm input:not([type=checkbox]) {
		width: 100%;
	}

	.TabWrapper {
		margin-bottom: 1rem;
	}

	.TabWrapper > div:not(.tabs), .TabWrapper .TabContent {
		padding: 15px;
		border-left: 2px solid var(--ButtonHoverColor);
		border-right: 2px solid var(--ButtonHoverColor);
		border-bottom: 2px solid var(--ButtonHoverColor);
	}

	.TabWrapperNoBorder {
		margin-right: 50px;
	}

	div.tabs, .Tabs {
		user-select: none;
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		padding: 0;
		margin: 0;
		border-bottom: 2px solid var(--ButtonHoverColor);
	}

	div.tabs.vertical {
		flex-direction: column;
		border-bottom: none;
	}

	div.tabs > .tab, .Tabs .Tab {
		display: inline-block;
		padding: 5px 10px 5px 10px;
		font-size: 1em;
		color: var(--ButtonFontColor);
		background: var(--ButtonColor);
		cursor: pointer;
		border: 0;
		border-bottom: 2px solid var(--BorderColor);
		border-right: 2px solid var(--ButtonHoverColor);
		margin-top: 0.8rem;
		filter: grayscale(50%);
	}

	div.tabs.vertical > .tab {
		text-align: left;
		border-right: none;
	}

	div.tabs > .tab:hover, .Tabs .Tab:hover {
		background: var(--ButtonHoverColor);
	}

	div.tabs > .tab.active, .Tabs .Tab.Active {
		background: var(--ButtonHoverColor);
		border-bottom: 0;
		font-weight: bold;
		margin-top: 0;
		filter: none;
	}

	@media only screen and (max-width: 1200px) {
		.sp-content {
			padding-left: 25px;
			padding-right: 25px;
		}
	}

	@media only screen and (max-width: 900px) {
		.ModalContent {
			width: auto;
		}
	}

	@media only screen and (max-width: 768px) {
		#LoginArea {
			width: 90%;
			min-width: 0;
		}

		.sp-content {
			padding-left: 10px;
			padding-right: 10px;
		}

		.Modal {
			padding-top: 0;
		}

		.ModalContent {
			padding: 10px 10px;
			width: auto;
		}

		.ObjectDetailsModalInnerContent {
			max-height: unset !important;
		}

		.InfoModalNavigation {
			position: sticky;
			top: 0;
			z-index: 99;
			backdrop-filter: blur(2px);
			-webkit-backdrop-filter: blur(2px);
		}

		.SimpleEditForm label {
			font-size: 0.85em;
		}

		.SimpleEditForm table {
			border-spacing: 0 8px;
		}

		div.input-explanation {
			width: auto;
			transform: translateY(-100%);
			margin-top: -3em;
		}

		form[id$="SearchForm"] input:not([type=checkbox]), form[id$="SearchForm"] select {
			width: 100%;
		}

		.ObjectDetailsTable {
			width: 98%;
			word-break: break-all;
		}

		.ObjectDetailsTable th {
			display: none;
		}

		.ObjectDetailsTable tr {
			display: flex;
			flex-direction: column;
		}

		.ObjectDetailsTable tr td:first-child {
			border-bottom: 0;
			padding-bottom: 0;
		}

		.ObjectDetailsTable tr td:last-child {
			border-top: 0;
			padding-top: 0;
		}

		.HistoricModificationTable tr {
			display: flex;
			flex-direction: column;
			border: 1px solid black;
		}

		.HistoricModificationTable tr:first-child {
			border: 0;
		}

		.HistoricModificationTable th {
			display: none;
		}

		.HistoricModificationTable td {
			border: 0;
		}

		.HistoricModificationTable td:first-child {
			font-weight: bolder;
			font-size: 1.1rem;
			color: var(--PrimaryColor);
		}

		.HistoricModificationTable td:not(:first-child):not(:last-child) {
			border-top: inherit;
			border-bottom: inherit;
		}

		.HistoricModificationTable td:not(:first-child)::before {
			content: attr(data-header);
			display: flex;
			font-weight: bold;
			color: var(--PrimaryColor);
		}

		.HistoryCollapseRow {
			display: none !important;
		}

		.FlexSpacer {
			flex-basis: 100%;
		}

		.SearchResultTable tr {
			display: flex;
			flex-direction: column;
			border: 1px solid black;
		}

		.SearchResultTable tr:first-child {
			border: 0;
		}

		.SearchResultTable th {
			display: none;
		}

		.SearchResultTable td {
			border: 0;
		}

		.SearchResultTable td::before {
			content: attr(data-header);
			display: flex;
			font-weight: bold;
		}

		.BigButton {
			width: 100%;
			margin: 0.5rem 0;
		}
	}

	.Hero {
		min-height: 333px;
		overflow: hidden;
		font-size: 1em;
		background: gray;
	}

	.Hero, .Hero * {
		color: var(--NavigationFontColor) !important;
	}

	.Hero .HeroContent {
		position: absolute;
		width: 100%;
		height: 100%;
		/* Center contents */
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.Hero .HeroImage {
		position: absolute;
		z-index: 0;
		width: 100%;
		height: 100%;
		background-position: center;
		background-size: cover;
	}

	.Hero .HeroImage.Dim {
		filter: brightness(66%);
	}

	.Hero .HeroOverlay {
		width: 100%;
		max-height: 100%;
		object-fit: contain;
	}

	.FlexBox {
		display: flex;
		flex-wrap: wrap;
	}

	.FlexBox2PartDiv {
		display: block;
		width: 45%;
		min-width: 20em;
		padding: 10px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.FlexBox3PartDiv {
		display: block;
		width: 30%;
		min-width: 20em;
		padding: 10px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.FlexBoxImage {
		margin-left: auto;
		margin-right: auto;
		display: block;
		width: 100%;
	}

	ul.Actions {
		user-select: none;
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		padding: 0;
		margin: 0 0 1rem;
	}

	ul.Actions ul {
		padding: 0;
	}

	.SpaceBetween, .space-between {
		justify-content: space-between;
	}

	ul.Breadcrumbs {
		list-style: none;
		padding: 0 1rem 0 0;
		margin: 0;
		display: flex;
		flex-wrap: nowrap;
		overflow: hidden;
		justify-content: end;
	}

	ul.Breadcrumbs li {
		text-wrap: nowrap;
	}

	ul.Breadcrumbs li:not(:first-child) {
		padding-left: 0.5rem;
	}

	ul.Breadcrumbs li:not(:first-child)::before {
		content: '/';
		padding-right: 0.5rem;
	}

	@media (min-width: 993px) {
		.ModalContent {
			margin: 2rem auto;
		}

		.Hero {
			font-size: 1.5em;
		}

		.Hero.Big {
			min-height: 830px;
		}
	}

	@media (min-width: 1201px) {
		.Hero {
			font-size: 2em;
		}
	}

	.ModalContent table, .SimpleEditForm table {
		width: 100%;
	}

	.SimpleEditForm tr input:not([type=checkbox]),
	.SimpleEditForm tr select,
	.SimpleEditForm tr textarea {
		width: 100%;
		max-width: 100%;
	}

	.SimpleEditForm tr textarea {
		resize: vertical;
	}

	.button#GenericModalBackButton[disabled] {
		visibility: hidden;
	}

	.Disabled {
		pointer-events: none;
		cursor: default;
	}

	.Actions.Disabled, .Tabs.Disabled {
		opacity: 0.5;
	}

	.LoadingOverlay {
		background-color: rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		padding: 0 !important;
		margin: 0 !important;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 1;
	}

	.LoadingOverlay .LoadingOverlayContent {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.LoadingOverlay, .LoadingOverlay * {
		color: white !important;
	}

	.LoadingOverlay *:last-child {
		margin-bottom: 0;
	}

	.Hidden {
		display: none;
	}

	[v-cloak], [v-cloak] * {
		display: none;
	}

	/* .input-explanation styles for autocomplete-field */
	autocomplete-field ~ .input-explanation {
		display: none;
	}

	autocomplete-field:hover ~ .input-explanation, autocomplete-field:focus ~ .input-explanation {
		display: block;
	}

	/* .SimpleEditForm styles for autocomplete-field */
	.SimpleEditForm autocomplete-field {
		width: 100%;
	}

	.card, .filter-form {
		background: var(--BackgroundColor);
		border: 1px solid var(--BorderColor);
		border-radius: var(--BorderRadius);
		padding: 1em;
		box-sizing: border-box;
	}

	.card > :first-child,
	.filter-form > :first-child {
		margin-top: 0;
	}

	.card > :last-child,
	.filter-form > :last-child {
		margin-bottom: 0;
	}

	.filter-form {
		display: flex;
		flex-direction: column;
	}

	.filter-form label {
		font-weight: bold;
	}

	.filter-field-summary {
		margin: var(--InputMargin);
		cursor: pointer;
		user-select: none;
	}

	.max-width-60rem {
		max-width: 60rem;
	}

	.max-width-100 {
		max-width: 100%;
	}

	.filter-field {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: center;
	}

	.filter-field, .filter-field > * {
		max-width: 100%;
	}

	.filter-field > *:first-child {
		text-align: left;
		justify-self: start;
	}

	.filter-field > *:last-child {
		align-self: start;
		margin: var(--InputMargin);
	}

	.filter-field > label {
		grid-column: 1;
	}

	.filter-field:has(input[type="checkbox"], input[type="radio"]) > label {
		grid-column: auto;
	}

	@media (min-width: 60rem) {
		.filter-field-summary {
			margin-left: 15rem;
			padding-left: 1rem;
		}

		.filter-field {
			grid-template-columns: 15rem minmax(0, 1fr);
			grid-column-gap: 1rem;
		}

		.filter-field > *:first-child {
			text-align: right;
			justify-self: end;
		}

		.filter-field > *:last-child {
			align-self: end;
		}

		.filter-field > input[type="checkbox"],
		.filter-field > input[type="radio"] {
			grid-column: auto;
		}

		.filter-field > label {
			grid-column: auto;
		}
	}

	.inline-flex {
		display: inline-flex;
	}

	.flex {
		display: flex;
	}

	.flex-wrap {
		flex-wrap: wrap;
	}

	.gap-05 {
		gap: 0.5rem;
	}

	.gap, .gap-1 {
		gap: 1rem;
	}

	.justify-between {
		justify-content: space-between;
	}

	.items-center {
		align-items: center;
	}

	.items-stretch {
		align-items: stretch;
	}

	.items-baseline {
		align-items: baseline;
	}

	.align-items-end {
		align-items: end;
	}

	.justify-right {
		justify-content: end;
	}

	.justify-left {
		justify-content: start;
	}

	.justify-center {
		justify-content: center;
	}

	.justify-end {
		justify-content: end;
	}

	.flex-column {
		flex-direction: column;
	}

	.flex-row {
		flex-direction: row;
	}

	@media only screen and (max-width: 1200px) {
		.flex-column-medium {
			flex-direction: column;
		}
	}

	@media only screen and (max-width: 768px) {
		.flex-column-small {
			flex-direction: column;
		}
	}

	.flex-auto {
		flex: 1 1 auto;
	}

	.flex-grow {
		flex: 1 1 0;
		min-width: 0;
	}

	.flex-shrink {
		flex-shrink: 1;
	}

	.flex-basis-0 {
		flex-basis: 0;
	}

	.min-height-100 {
		min-height: 100%;
	}

	.margin-left-1 {
		margin-left: 1em;
	}

	.margin-0 {
		margin: 0;
	}

	.button.icon-only {
		min-width: calc(var(--ButtonPaddingHorizontal) * 2 + .25em);
	}

	.button.icon-only::before, .button.icon-only::after {
		display: none;
		content: unset;
	}

	.ValidatedForm label {
		margin-right: 20px;
		display: inline-block;
	}

	.ValidatedForm label.required {
		font-weight: bold;
	}

	.ValidatedForm label.required::after, .ValidatedForm label.required::after {
		content: "*";
		font-size: 1.5em;
		color: var(--DangerColor);
	}

	/* CSS Grid */
	.grid {
		display: grid;
		grid-gap: 0.2rem 1rem;
		grid-auto-rows: minmax(40px, auto);
	}

	.grid-col-2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.grid-col-2-compact {
		display: grid;
		grid-template-columns: 0fr 1fr;
	}

	.grid-col-2-compact .grid-label {
		margin: var(--InputMargin);
		font-weight: bold;
		user-select: none;
	}

	.grid-col-2-compact > div:nth-child(odd) {
		width: max-content;
	}

	.grid-col-2-compact > *:nth-child(even) {
		margin: 0;
	}

	.grid-col-2-not-too-compact {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-gap: 0.2rem 1rem;
		align-items: center;
		width: 100%;
	}

	.grid-col-2-not-too-compact > label {
		align-self: center;
		font-weight: bold;
	}

	.grid-col-2-super-compact {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-gap: 1px 5px;
		align-items: center;
	}

	.align-self-center {
		align-self: center;
	}

	.align-self-left {
		align-self: flex-start;
	}

	.align-self-right {
		align-self: flex-end;
	}

	/**
	 * Mobile-first responsive grid with 1, 2 or 3 columns
	 */
	.grid.grid-1-2-3 {
		grid-template-columns: 1fr;
	}

	@media only screen and (min-width: 769px) {
		.grid.grid-1-2-3 {
			grid-template-columns: 1fr 1fr;
		}
	}

	@media only screen and (min-width: 993px) {
		.grid.grid-1-2-3 {
			grid-template-columns: 1fr 1fr 1fr;
		}
	}

	/**
	 * Break grid into a single column on small screens
	 */
	@media only screen and (max-width: 992px) {
		.grid-col-2,
		.grid-col-2-compact {
			grid-template-columns: 1fr;
			grid-gap: 0;
		}

		.grid-col-2-compact .grid-label {
			margin: 0;
			align-content: end;
		}
	}

	/**
	 * Default fade in-out transition
	 */
	.fade-enter-active, .fade-leave-active {
		transition: opacity 500ms ease;
	}

	.fade-enter-from, .fade-leave-to {
		opacity: 0;
	}

	/**
	 * Validation colors for .ValidatedForm elements
	 *
	 * NOTE: Keep these at the end of the file to avoid being overridden by other styles
	 */
	.ValidatedForm *:valid,
	.ValidatedForm .valid,
	.valid {
		border-color: var(--SuccessColor);
	}

	.ValidatedForm *:invalid,
	.ValidatedForm .invalid,
	.invalid {
		border-color: var(--DangerColor);
		box-shadow: 0px 0px 0px 2px var(--DangerColor);
	}

	fieldset {
		border-color: var(--InputBorderColor);
	}

	fieldset {
		min-width: 0;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	legend {
		min-width: 0;
		max-width: 100%;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.ValidatedForm fieldset:invalid,
	.ValidatedForm fieldset:valid {
		border-color: revert;
		box-shadow: revert;
	}

	/**
	 * CMS Styles
	 */
	.cms-container, .sp-content.cms-container {
		max-width: 100%;
		display: flex;
		flex-direction: row;
		margin: 0;
		padding: 0;
	}

	.cms-sidebar-container {
		background: var(--NavigationBackgroundColor);
	}

	.sp-panelmenu {
		background: #ffffff;
		border-radius: var(--BorderRadius);
		margin: var(--InputPadding);
		padding: 6px;
	}

	.sp-panelmenu-item {
		display: flex;
		align-items: center;
		padding: var(--InputPadding);
		gap: 6px;
	}

	.sp-panelmenu-item,
	.sp-panelmenu-item a {
		color: var(--FontColor);
	}

	.sp-panelmenu-item.sp-panelmenu-item-active,
	.sp-panelmenu-item.sp-panelmenu-item-active a {
		background: var(--FontColor);
		color: var(--BackgroundColor);
		border-radius: var(--BorderRadius);
	}

	.cms-container .cms-sidebar {
		position: sticky;
		top: 0;
		flex: 0 0 auto;
		padding: 0;
		margin: 0;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
		color: var(--NavigationFontColor);
		background: var(--NavigationBackgroundColor);
	}

	.cms-container .cms-sidebar a,
	.cms-container .cms-sidebar a:visited,
	.cms-container .cms-sidebar a:active,
	.cms-container .cms-sidebar a:hover,
	.cms-container .cms-sidebar a:focus {
		color: var(--NavigationFontColor);
		text-decoration: none;
	}

	.cms-container ul.cms-sidebar, .cms-container ul.cms-sidebar ul {
		background: var(--NavigationBackgroundColor);
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.cms-container ul.cms-sidebar li {
		padding: 0;
	}

	.cms-container ul.cms-sidebar li.title {
		font-size: 1.1em;
		font-weight: bold;
		padding: 1em;
	}

	.cms-container ul.cms-sidebar li.link > a,
	.cms-container ul.cms-sidebar li.link > div {
		display: flex;
		gap: 1rem;
		padding: 1rem;
	}

	.cms-container ul.cms-sidebar li.link:hover {
		color: var(--PrimaryTextColor);
		background: var(--FontColor);
	}

	.cms-container ul.cms-sidebar li.active,
	.cms-container ul.cms-sidebar li.active:hover {
		color: var(--PrimaryTextColor);
		background: var(--PrimaryColor-600);
	}

	.cms-container ul.cms-sidebar li ul li {
		padding-left: 2rem;
	}

	.cms-content-container {
		flex: 1;
		background: lightgray;
	}

	.cms-container .cms-header {
		position: sticky;
		top: 0;
		width: 100%;
		background: white;
		color: var(--FontColor);
		z-index: 1;
		padding: 0 1em 1em;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.cms-container .cms-content {
		position: relative;
		z-index: 0;
		flex: 1;
		margin: 1em;
		filter: brightness(100%);
		opacity: 1.0;
		transition: opacity 0.3s ease, filter 0.3s ease;
	}

	.cms-container .cms-content.disabled {
		filter: brightness(50%);
		opacity: 0.8;
		pointer-events: none;
		transition: opacity 0.3s ease, filter 0.3s ease;
	}

	/* Styles for .sp-card-container */
	.sp-card-container {
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: .5em;
	}

	.sp-card-container.sp-card-container-fluid {
		max-width: 100%;
		gap: 2em;
	}

	/* Styles for .sp-card-container (desktop) */
	@media (min-width: 992px) {
		.sp-card-container {
			max-width: 992px;
			margin: 0 auto;
		}
	}

	/* Styles for .sp-card (mobile) */
	.sp-card-container > .sp-card {
		flex: 1 1 100%;
		max-width: 100%;
	}

	@media (min-width: 576px) {
		/* Styles for .sp-card (tablet) */
		.sp-card-container > .sp-card {
			flex: 1 1 50%;
			max-width: calc(50% - .5em);
		}

		.sp-card-container.sp-card-container-fluid > .sp-card {
			flex: 1 1 50%;
			max-width: calc(50% - 2em);
		}

		.sp-card-container > .sp-card.sp-card-article {
			max-width: 100%;
		}
	}

	@media (min-width: 992px) {
		/* Styles for .sp-card (desktop) */
		.sp-card-container > .sp-card {
			flex: 1 1 100%;
			max-width: calc(100% / 3 - .5em);
		}

		.sp-card-container > .sp-card.sp-card-article {
			max-width: calc(50% - .5em);
		}

		.sp-card-container.sp-3-columns > .sp-card {
			max-width: calc((100% - (.5em * 2) * 2) / 3);
		}

		.sp-card-container.sp-4-columns > .sp-card {
			max-width: calc((100% - (.5em * 3) * 3) / 4);
		}

		.sp-card-container.sp-card-container-fluid > .sp-card {
			flex: 1 1 100%;
			max-width: calc(100% / 3 - 2em);
		}

		.sp-card-container.sp-card-container-fluid > .sp-card.sp-card-article {
			max-width: calc(50% - 2em);
		}
	}

	/* Styles for .sp-card */
	.sp-card {
		display: flex;
		flex-direction: column;
		border-radius: 0.5em;
		padding: .5em;
	}

	.mb-1 {
		margin-bottom: 1em;
	}

	.mt-1 {
		margin-top: 1em;
	}

	.w-100 {
		width: 100%;
	}

	/* Styles for .sp-card-image */
	.sp-card-image img {
		object-fit: contain;
		aspect-ratio: 1.618;
		height: auto;
		width: 100%;
	}

	.sp-card-image.sp-card-image-cover img {
		object-fit: cover;
	}

	/* Styles for .sp-contact-card */
	.sp-contact-card {
		gap: 1rem;
	}

	.sp-card-container-landscape .sp-contact-card {
		flex-direction: row;
	}

	.sp-contact-card .sp-card-image img {
		max-width: 150px;
		object-fit: cover;
		aspect-ratio: 1;
		border-radius: 50%;
	}

	.sp-contact-card .sp-card-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: .5rem;
		justify-content: center;
	}

	.sp-contact-name {
		font-size: var(--sp-h2-font-size);
		font-size: var(--sp-h2-font-size-fallback);
		font-weight: bold;
	}

	.sp-contact-phone {
		font-weight: bold;
		color: var(--PrimaryTextColor);
		background-color: var(--PrimaryColor);
		padding: var(--ButtonPadding);
		border-radius: var(--ButtonBorderRadius);
	}
	
	.text-center {
		text-align: center;
	}

	/**
	 * Styles for .sp-settings-card
	 */
	.sp-settings-card {
		margin: 1rem 0;
	}

	.sp-settings-card-header {
		color: var(--NavigationFontColor);
		padding: 0.5rem;
		margin-bottom: 0.2rem;
		background-color: var(--NavigationBackgroundColor);
		border-radius: var(--BorderRadius) var(--BorderRadius) 0 0;
	}

	.sp-settings-card-header-title {
		padding-left: 0.5rem;
		color: var(--NavigationFontColor);
	}

	/**
	 * Responsive mobile-first class for sections containing text
	 */
	.sp-html-section {
		padding: 0 1rem;
		margin: 1rem auto;
		max-width: 100%;
	}

	.sp-html-section.sp-colored-section {
		background: #000;
		color: #fff;
		margin-top: -1em;
		padding: 1em;
	}

	* img {
		max-width: 100%;
	}

	@media screen and (min-width: 576px) {
		.sp-html-section {
			padding: 0 2rem;
		}

		.sp-html-section.sp-colored-section {
			padding: 1em 2em;
		}
	}

	@media screen and (min-width: 992px) {
		.sp-html-section {
			padding: 0 3rem;
		}

		.sp-html-section.sp-colored-section {
			padding: 1em 3em;
		}
	}

	@media screen and (min-width: 1200px) {
		.sp-html-section {
			padding: 0 4rem;
		}

		.sp-html-section.sp-colored-section {
			padding: 1em 4em;
		}
	}

	/**
	 * Styles for .sp-footer-container
	 */
	.sp-footer-container {
		display: flex;
		background: var(--sp-footer-background-color);
		color: var(--sp-footer-color);
	}

	.sp-footer-container h1,
	.sp-footer-container h2,
	.sp-footer-container h3,
	.sp-footer-container h4,
	.sp-footer-container h5,
	.sp-footer-container h6 {
		color: var(--sp-footer-heading-color);
		text-transform: uppercase;
	}

	/**
	 * Make footer headings smaller than regular headings
	 */
	.sp-footer-container h1 {
		font-size: 1.5rem;
		padding-bottom: .5rem;
		border-bottom: 1px solid var(--sp-footer-heading-color);
	}

	.sp-footer-container h2 {
		font-size: 1.25rem;
	}

	.sp-footer-container h3 {
		font-size: 1.125rem;
	}

	.sp-footer-container h4 {
		font-size: 1rem;
	}

	.sp-footer-container h5 {
		font-size: 0.875rem;
	}

	.sp-footer-container h6 {
		font-size: 0.75rem;
	}

	.sp-footer-content {
		margin: 0 auto;
		width: var(--sp-content-width);
		max-width: var(--sp-content-max-width);
	}

	.sp-footer-section {
		display: flex;
		flex-direction: row;
		gap: var(--sp-footer-gap);
		flex-wrap: wrap;
	}

	.sp-footer-panel {
		width: 100%;
	}

	@media (min-width: 768px) {
		.sp-footer-section {
			gap: calc(var(--sp-footer-gap) * 2);
		}

		.sp-footer-panel {
			width: calc((100% - var(--sp-footer-gap) * 2) / 2);
		}
	}

	@media (min-width: 1200px) {
		.sp-footer-section {
			gap: calc(var(--sp-footer-gap) * 3);
		}

		.sp-footer-panel {
			width: calc((100% - (var(--sp-footer-gap) * 3) * 3) / 4);
		}
	}

	.sp-sticky-top {
		position: sticky;
		top: 0;
	}

	.sp-infomark {
		cursor: pointer;
		transition: color 0.2s;
	}

	.sp-infomark:hover {
		color: var(--PrimaryColor);
	}

	blockquote {
		background: var(--sp-pv-card-background);
		color: var(--sp-pv-card-color);
		padding: 1rem;
		border-left: 4px solid var(--PrimaryColor-500);
		margin: 1rem 0 1rem 1rem;
		white-space: pre-wrap;
		box-shadow: 0 2px 5px var(--sp-pv-surface-400);
		overflow: hidden;
		word-break: break-word;
	}

	figure {
		border: 1px solid var(--InputBorderColor);
		padding: 0;
		margin: 10px 0;
	}

	figcaption {
		margin: 1rem;
	}

	.editable-text-block {
		display: flex;
		flex-direction: row;
		min-height: 4rem;
		width: 100%;
	}

	.editable-text-block > .editing-button-container {
		margin-left: 0.5rem;
	}

	.editing-button-container > button {
		width: 2rem;
		height: 2rem;
		min-width: 2rem !important;
		min-height: 2rem !important;
	}

	.editable-text-block > .editable-content {
		flex-grow: 1;
	}

	.editable-content > .editable-textarea {
		position: relative;
		max-width: 100%;
	}

	.editable-textarea::before {
		content: "Muokataan tekstiä...";
		color: white;
		position: absolute;
		top: -1.3rem;
		font-size: small;
		background: var(--InfoColor);
		border-radius: 5px 5px 0 0;
		padding: 0.2rem 1rem;
	}

	.editable-textarea > textarea {
		margin: 0;
		margin-bottom: -4px;
		padding: 1rem;
		width: 100%;
		max-width: 100%;
		border: var(--InfoColor) 2px solid;
		border-radius: 0 5px 5px 5px;
	}

	button.rounded {
		border-radius: 100%;
	}

	.bold {
		font-weight: bold;
	}


	/* Mobile view for datatable */
	.sp-mobile-card-list {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.sp-mobile-card {
		border: 1px solid #e0e0e0;
		border-radius: 8px;
		padding: 1rem;
		background: #fff;
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.sp-mobile-card-header {
		display: flex;
		justify-content: space-between;
		gap: 1rem;
		align-items: flex-start;
	}

	.sp-mobile-card-header h4 {
		margin: 0;
	}

	.sp-mobile-card-summary,
	.sp-mobile-card-details {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}

	.sp-mobile-card-row {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
	}

	.sp-mobile-card-row label {
		font-weight: 600;
		font-size: 0.9rem;
		color: #666;
	}

	.sp-mobile-card-row strong {
		color: #666;
		font-size: 0.9em;
	}

	.sp-mobile-card-toggle {
		background: none;
		border: none;
		color: #555;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0;
		font-size: 0.9rem;
	}

	.sp-mobile-card-toggle i {
		transition: transform 0.3s ease;
	}

	.sp-mobile-card-toggle.expanded i {
		transform: rotate(180deg);
	}

	.sp-mobile-card-actions {
		display: flex;
		justify-content: flex-end;
	}

	.sp-mobile-card-empty {
		text-align: center;
		padding: 1rem 0;
	}
}