body {
	background-color: #fffcf4;
	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 */
.off-canvas {
	left: -250px;
	width: 250px;
}

.off-canvas.open {
	transform: translateX(250px);
}

/* Scoped styles (within your component's <style> tag) */
::-webkit-scrollbar {
	width: 20px;
	/* Increase scrollbar width */
	background-color: rgba(31, 41, 55);
	/* Semi-transparent background */
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #d6dee1;
	border-radius: 20px;
	/* Rounded corners */
	border: 6px solid transparent;
	background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #a8bbbf;
}

.heading {
	background-image: conic-gradient(#553c9a, #ee4b2b, #00c2cb);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	position: relative;
}

footer {
	padding: 4rem;
}

.custom-font {
	font-weight: 900;
}

/* Template-specific alert styling */
#custom-alert-container {
	max-width: 16rem !important;
	right: 1rem !important;
	top: 1rem !important;
}

#custom-alert-container .max-w-sm {
	max-width: 16rem !important;
}
