a.selectpicker, .bootstrap-select .dropdown-toggle, .bootstrap-select .dropdown-menu {
	background: var(--themed-bg, rgba(255,255,255,0.95)) !important;
	color: #222 !important;
	border-radius: 0.5rem !important;
	border: 1px solid #bbb !important;
}

[data-bs-theme="dark"] .selectpicker, [data-bs-theme="dark"] .bootstrap-select .dropdown-toggle, [data-bs-theme="dark"] .bootstrap-select .dropdown-menu {
	background: var(--themed-bg, rgba(30,34,40,0.97)) !important;
	color: #eee !important;
	border: 1px solid #444 !important;
}

[data-bs-theme="light"] .selectpicker, [data-bs-theme="light"] .bootstrap-select .dropdown-toggle, [data-bs-theme="light"] .bootstrap-select .dropdown-menu {
	background: var(--themed-bg, rgba(255,255,255,0.95)) !important;
	color: #222 !important;
	border: 1px solid #bbb !important;
}
/* Limit the size of the carousel image container on all view sizes */
.content {
	padding: 1rem;
}
body {
	margin: 8 !important;
}

@media (max-width: 988px) {
	.themed-container {
		width: 100%;
	}
}

@media (min-width: 988px) {
	.themed-container {
		width: 100%;
	}
}

.container {
	background: #222;
}

.themed-container {
	background: var(--themed-bg, rgba(255, 255, 255, 0.95));
	box-shadow: 0 8px 32px 0 var(--themed-shadow1, rgba(31, 38, 135, 0.15)), 0 1.5px 6px 0 var(--themed-shadow2, rgba(0, 0, 0, 0.08));
	border-radius: 1rem;
}

[data-bs-theme="dark"] .themed-container {
	--themed-bg: rgba(30, 34, 40, 0.97);
	--themed-shadow1: rgba(0, 0, 0, 0.45);
	--themed-shadow2: rgba(0, 0, 0, 0.18);
}

[data-bs-theme="light"] .themed-container {
	--themed-bg: rgba(255, 255, 255, 0.95);
	--themed-shadow1: rgba(31, 38, 135, 0.15);
	--themed-shadow2: rgba(0, 0, 0, 0.08);
}

#back-to-home {
	top: 1rem;
	left: 1rem;
	z-index: 1000;
}

a.disabled {
	pointer-events: none;
	cursor: default;
}