/* START: FIX to prevent scrolling */
		html, body {
			height: 100%;
			overflow: hidden; /* Locks the page content */
		}
		/* END: FIX to prevent scrolling */
		
		/* Centering for SVG logo */
		.svg-container {
			/* Ensures the container is centered */
			margin-left: auto;
			margin-right: auto;
			/* Flexbox for inner content alignment */
			display: flex;
			justify-content: center; 
			align-items: center;
		}

		/* UPDATED: Reduced spinner size and border width */
		.loader {
			border: 2px solid #fff;
			border-top: 2px solid #000;
			border-radius: 50%;
			width: 1rem; /* Reduced from 1.25rem */
			height: 1rem; /* Reduced from 1.25rem */
			animation: spin 1s linear infinite;
		}

		@keyframes spin {
			0% { transform: rotate(0deg); }
			100% { transform: rotate(360deg); }
		}