*{
	margin:0;
	padding:0;
}

/* Fixed navbar styles */
.navbar {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
}

/* Ensure the navbar wrapper is also fixed */
#app-header-nav-wrapper {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
}

/* Add padding to body to prevent content from hiding behind fixed navbar */
body {
	/* padding-top: 60px; */ /* Will be set dynamically by JavaScript based on navbar height */
}


/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
	body {
		/* padding-top: 50px; */ /* Will be set dynamically by JavaScript based on navbar height */
	}
}

/* Ensure dropdown menus appear above other content */
.navbar .dropdown-menu {
	z-index: 110;
}