body {
	font-family: "Nunito", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings: "slnt" 0;
	scroll-behavior: smooth;
}

/* Loading Screen Styles */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999; /* Ensure the loader is on top of everything */
}

.loader {
	border: 16px solid #f3f3f3;
	border-top: 16px solid #3498db;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Hide the main content initially */
.page-content.hidden {
	display: none;
}

/* Off-canvas menu styles */
#offCanvasMenu {
	transition: transform 0.3s ease-in-out;
	transform: translateX(-100%);
}

#offCanvasMenu.translate-x-0 {
	transform: translateX(0);
}

#menuOverlay {
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}

::-webkit-scrollbar {
	width: 15px;
	background-color: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #dedede;
	border-radius: 20px;
	border: 4px solid transparent;
	background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #bababa;
}
