
html, body {
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overscroll-behavior: none;
	scroll-behavior: smooth;
	background-color: var(--lt-base-background);
}

* {
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: manipulation;
}

.page-container {
	min-height: 90vh;
	padding: 16px;
	overflow-y: auto;
	background-color: #EEF0F4;
}

.page-container-with-header {
	padding: 16px;
	overflow-y: auto;
	background-color: #EEF0F4;
	flex-grow: inherit;
}

.admin-settings-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	flex-grow: 1;
}

.admin-setting-fields {
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 175px);
}

.setting-container {
	background: white;
	border-radius: 8px;
	overflow: hidden;
}

.setting-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.setting-border {
	border-bottom: 1px solid var(--lt-gray-very-light);
}

.setting-item:last-child {
	border-bottom: none;
}

.setting-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--lt-base-blue);
	margin: 0;
}

.setting-setting {
	font-size: 12px;
	color: var(--lt-black);
	margin: 0;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.custom-dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	max-width: 400px;
	width: 90%;
}

.dialog-actions {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-top: 20px;
}

.admin-actions {
	margin-top: auto;
	padding-top: 30px;
	display: flex;
	justify-content: center;
	width: 100%;
}

select:focus {
	outline: none;
	border: none;
	box-shadow: none;
}

*::-webkit-scrollbar {
	display: none;
}

.mud-appbar {
	background-color: var(--lt-base-blue) !important;
	position: sticky !important;
	top: 0 !important;
}

.mud-switch-base.mud-checked+.mud-switch-track {
	opacity: 1 !important;
	height: 22px;
	border-radius: 99px !important;
}

.mud-switch-span {
	align-items: center !important;
}

.mud-button-root {
	color: var(--lt-black-white) !important;
}

.mud-switch-span .mud-switch-track {
	background-color: var(--lt-base-blue) !important;
	height: 21px;
	border-radius: 99px !important;
}

.mud-switch-button .mud-switch-thumb-medium {
	border: 1px solid var(--lt-base-blue);
}

.mud-switch-button:has(input[aria-checked="false"]) .mud-switch-thumb-medium {
	border: 1px solid rgba(13, 53, 160, .48);
}

.mud-input-control.mud-input-control-boolean-input {
	width: 50px !important;
}

.mud-button-label { 
	color: black;
}

.mud-dialog .mud-dialog-actions>:not(:first-child) {
	color: var(--lt-base-blue) !important;
}

.mud-dialog .mud-dialog-actions>:first-child {
	color: var(--lt-base-red) !important;
}

.floating_button {
	position: fixed;
	bottom: 100px;
	right: 20px;
	z-index: 100;
}

.loader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}