body {
	background-color: #f3f6f9;
}

.minimal-indicator {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	gap: 0.5rem;
}

.minimal-green {
	background-color: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #15803d;
}

.status-dot {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	margin-right: 0.3rem;
	display: inline-block;
}

.status-dot-green {
	background-color: #22c55e;
}

.root-loader-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	position: absolute;
	left: 0;
	right: 0;
	top: 50% !important;
	transform: translateY(-50%);
	height: 638px;
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
	border-radius: 0.475rem;
	background-color: #ffffff;
	z-index: 99;
	backdrop-filter: blur(3px);
	max-width: 88vw;
}

#root-loader .root-loader-content {
	height: 100vh;
	width: 100vw;
	top: 0 !important;
	left: 0;
	transform: none;
	max-width: 100vw;
	background-color: rgba(255, 255, 255, 0.3);
}

.root-loader {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	border: 3px solid;
	border-color: #fff #fff transparent transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

.root-loader::after,
.root-loader::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 3px solid;
	border-color: transparent transparent #ff3d00 #ff3d00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	animation: rotationBack 0.5s linear infinite;
	transform-origin: center center;
}

.root-loader::before {
	width: 32px;
	height: 32px;
	border-color: #fff #fff transparent transparent;
	animation: rotation 1.5s linear infinite;
}

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

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

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

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

#version-popup {
	display: inline-block;
	position: fixed;
	right: 0;
	bottom: 0;
	padding: 10px;
	background-color: #c8d3db;
	border-radius: 5px;
	min-width: 180px;
	z-index: 9999;
}

#version-popup.loading {
	display: flex !important;
	position: fixed; /* or 'absolute' */
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center; /* instead of alignContent */
	flex-direction: column;
	justify-content: center;
	gap: 25px;
	background-color: rgba(200, 211, 219, 0.5);
	backdrop-filter: blur(1px);
	cursor: wait;
}

#version-popup .buttons {
	margin: 0;
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
}
#version-popup .buttons button {
	border: 1px solid gray;
	border-radius: 3px;
	font-weight: 600;
	padding: 10px 15px;
	line-height: 0;
}
#version-popup .buttons button.strong {
	background-color: #2a6ea5;
	color: white;
}
#version-popup .title {
	width: 100%;
	background-color: #2a6ea5;
	color: white;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	border-radius: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	text-align: center;
	height: 20px;
	font-weight: 600;
	padding: 0 5px;
}
#version-popup .content {
	margin: 0;
	margin-top: 10px;
	margin-bottom: 5px;
}
