*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.td-black-text
{
	color: black !important;
}
#my-location-container td
{
	color: black;
}
body
{
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f7fa;
	overflow-x: hidden;
}
.container
{
	display: flex;
	flex-direction: column;
}
.top-nav
{
	width: 100%;
	background: linear-gradient(180deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-header
{
	padding: 15px 20px;
}
.nav-menu
{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	background-color: rgba(0, 0, 0, 0.1);
}
.nav-list
{
	display: flex;
	list-style: none;
}
.nav-item
{
	margin: 0 10px;
	position: relative;
}
.nav-link
{
	text-decoration: none;
	color: white;
	font-size: 1rem;
	padding: 10px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-link:hover
{
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

/* Primary level submenu */
.submenu
{
	display: none;
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: auto;
	min-width: 250px;
	background-color: #333;
	padding: 10px 0;
	z-index: 100;
	border-radius: 8px;
}

/* Show submenu on hover */
.nav-item:hover > .submenu
{
	display: block;
}

/* Nested submenu (second level) */
.submenu .submenu
{
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	margin-left: 0;
	background-color: #444;
	border-radius: 8px;
}

/* Show nested submenu on hover */
.submenu .nav-item:hover > .submenu
{
	display: block;
}

/* All submenu links */
.submenu a
{
	text-decoration: none;
	color: white;
	padding: 8px 20px;
	display: block;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.submenu a:hover
{
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffd700;
	padding-left: 30px;
}

/* Arrow indicator for items with nested submenus */
.submenu .nav-item > .nav-link .nav-arrow
{
	margin-left: auto;
	padding-left: 10px;
}

/* Prevent arrow shift on hover for nested items */
.submenu .nav-item > .nav-link:hover
{
	padding-left: 20px;
}

.main-content
{
	margin-top: 0;
	padding: 20px;
	min-height: 100vh;
}
.content-header h1
{
	font-size: 2.5rem;
	color: #1e3c72;
	margin-bottom: 10px;
}
.tagline
{
	font-size: 1.1rem;
	color: #666;
}
@media (max-width: 1024px)
{
	.nav-item
	{
		margin: 0 10px;
	}
	.nav-link
	{
		font-size: 0.9rem;
	}
}
@media (max-width: 768px)
{
	.top-nav
	{
		position: relative;
	}
	.nav-menu
	{
		flex-direction: column;
		align-items: stretch;
		background-color: #1e3c72;
	}
	.nav-item
	{
		width: 100%;
		text-align: center;
	}
	.nav-link
	{
		padding: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.submenu
	{
		position: static;
		background-color: #2a5298;
		padding-left: 20px;
	}
	
	/* Nested submenu in mobile */
	.submenu .submenu
	{
		position: static;
		background-color: #3a6298;
		padding-left: 40px;
	}
}
.sidebar-header h2
{
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sidebar-header
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sidebar-nav
{
	transition: all 0.3s ease;
}
.nav-item
{
	white-space: nowrap;
}
.nav-link
{
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}
.nav-item.active > .nav-link
{
	background: rgba(255, 255, 255, 0.1);
	padding-left: 25px;
}
.nav-item a[style*="not-allowed"],
.submenu a[style*="not-allowed"]
{
	cursor: not-allowed !important;
	pointer-events: none !important;
	opacity: 0.5 !important;
	text-decoration: none !important;
	color: #888 !important;
	background-color: rgba(0, 0, 0, 0.1) !important;
}
.nav-item a[style*="not-allowed"]:hover,
.submenu a[style*="not-allowed"]:hover
{
	background-color: rgba(0, 0, 0, 0.1) !important;
	color: #888 !important;
	padding-left: 20px !important;
}