.loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white overlay */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 100; /* Ensure it's above other content */
}

.loading-overlay .loading-text {
	font-size: 1.2em;
	color: #333;
	font-weight: bold;
}