#menu-
	> div.MuiPaper-root.MuiPaper-elevation.MuiPaper-rounded.MuiPaper-elevation1.MuiPaper-root.MuiMenu-paper.MuiPaper-elevation.MuiPaper-rounded.MuiPaper-elevation8.MuiPopover-paper.css-1poimk-MuiPaper-root-MuiMenu-paper-MuiPaper-root-MuiPopover-paper {
	left: -0.5px !important;
}

html {
	scroll-behavior: smooth !important;
}
body {
	scroll-behavior: smooth !important;
}
/* width */
::-webkit-scrollbar {
	width: 8px;
	height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #a2a2a2;
}

/* Center the splash screen image */
.splash-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	z-index: 9999;
	/* Add a smooth transition for hiding the splash screen */
	transition: opacity 0.5s ease-out;
}

/* Initially, set the splash screen opacity to 1 (fully visible) */
.splash-screen.visible {
	opacity: 1;
}

/* When the content is loaded, set the splash screen opacity to 0 (completely transparent) */
.splash-screen.hidden {
	opacity: 0;
}

/* Style the splash screen image */
.splash-image {
	max-width: 192px; /* Adjust this to match your splash image size */
	max-height: 192px; /* Adjust this to match your splash image size */
}
