	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	body {
		font-family: Arial, sans-serif;
		display: flex;
		flex-direction: column;
		height: 100vh;
		background-color: #f4f4f4;
	}
	@font-face {
          font-family: 'bootstrap-icons';
          font-style: normal;
          font-weight: 400;
          font-display: swap;
          src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.woff2') format('woff2'),
               url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.woff') format('woff');
    }
	.content-container {
		display: flex;
		flex: 1;
		width: 100%;
		max-width: 1800px;
		margin: auto;
		background: white;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.header-title {
		position: fixed;
		top: 0;
		left:0;
		right: 0;
		width: 100%;
		z-index: 1002;
		background: white;
		padding: 10px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
		text-align: left;
		font-size: 32px;
		font-weight: bold;
		color: #333;
		max-width: 1800px;
		margin: auto;
		height: 60px;
	}
	.sidebar.right {
		width: 23%;
		padding: 20px;
		background: #f8f9fa;
		color: black;
		overflow-y: auto;
		max-height: 85vh;
		border-left: 1px solid #ddd;
	}

	.content {
		width:59%;
		padding: 20px;
		background: #fff;
		overflow-y: auto;
	}
	@media (max-width: 1024px) {
		.content-container {
			flex-direction: column;
			height: auto;
		}

		.sidebar {
			width: 100%;
			max-height: unset;
		}

		.content {
			width: 100%;
		}

		.navbar ul {
			flex-direction: column;
			padding-top: 10px;
		}

		.navbar ul li {
			margin: 5px 0;
		}
	}
	#leftmenuinnerinner {
		height: 100%;
		width: 100%;
		overflow-x: hidden;
		padding-top: 20px;
	}
	.subtopnav-container {
		display: flex;
		width: 100%;
		background: #353839;
		position: fixed;
		top: 60px;
		max-width: 1800px;
		margin: auto;
		text-align: left;
		z-index: 1001;
		height: 55px;
		left:0;
		right: 0;
	}
	.subtopnav {
		display: flex;
		overflow-x: auto;
		white-space: nowrap;
		width: 80%;
		scroll-behavior: smooth;
		padding: 6px 0;
	}
	.subtopnav::-webkit-scrollbar {
		display: none;
	}
	.subtopnav a {
		display: inline-block;
		padding: 10px 25px;
		text-decoration: none;
		color: white;
		font-size: 16px;
		transition: 0.3s;
	}
	.subtopnav a:hover {
		color: #ffcc00;
		font-weight: bold;
	}
	.scroll-btn {
		position: absolute;
		font-size: 24px;
		color: white;
		border: none;
		background: none;
		cursor: pointer;
		padding: 5px;
	}
	#scroll_left_btn {
		left: 10px;
		display: none;
	}
	#scroll_right_btn {
		right: 10px;
	}
	#lightbulb-icon {
		transition: opacity 0.3s ease-in-out;
	}
	.sidebar.left {
		color: black;
		padding: 20px;
		z-index: 998;
		overflow-y: auto;
		max-height: 85vh;
		width: 18%;
		position: sticky;
		top: 115px;
		border-right: 1px solid #ddd;
	}


	@media (max-width: 768px) {
		.sidebar.left {
			width: 85%;
			max-width: 350px;
		}
	}


	/* Sidebar Menu */
	.sidebar.left ul {
		list-style-type: none;
		padding: 0;
	}

	.sidebar.left ul li a {
		color: black;
		text-decoration: none;
		display: block;
	}
	body.no-scroll {
		overflow: hidden;
		height: 100%;
		position: fixed;
		width: 100%;
	}
	.navbar {
		width: 100%;
		max-width: 1800px;
		background: #333;
		padding: 10px 0;
		margin: auto;
		text-align: left;    
	}

	.navbar ul {
		list-style-type: none;
		display: flex;
		justify-content: left;
		padding: 0;
	}

	.navbar ul li {
		margin: 0 15px;
	}

	.navbar ul li a {
		color: white;
		text-decoration: none;
		padding: 8px 15px;
	}

	.navbar ul li a:hover {
		background: #555;
		border-radius: 5px;
	}

	.mobile-menu-buttons {
		display: none;
		background-color: #f9f9f9;
		padding: 5px 15px;
		justify-content: space-between;
		align-items: center;
		padding-top: 115px;
	}

	@media (min-width: 1025px) {
		.mobile-only {
			display: none;
		}
	}

	@media (max-width: 1024px) {
		.mobile-menu-buttons {
			display: flex;
		}

		.sidebar-content {
			opacity: 0;
			transition: opacity 0.3s ease-in-out;
		}

		.sidebar.active .sidebar-content {
			opacity: 1;
		}

		.right-menu-toggle,
		.left-menu-toggle {
			display: inline-flex;
			background-color: #333;
			color: white;
			font-size: 16px;
			border: none;
			border-radius: 5px;
			cursor: pointer;
			white-space: nowrap;
			padding: 6px 12px;
			margin: 5px 10px;
			z-index: 900;
		}

		.right-menu-toggle {
			padding: 6px 12px;
			font-size: 18px;
		}

		.sidebar.right {
			width: 100% !important;
			max-width: 100% !important;
		}

		.sidebar.right,
		.sidebar.left {
			transform: translateX(100%);
			filter: blur(4px);
			opacity: 0;
			transition:
			transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
			filter 0.3s ease,
			opacity 0.3s ease;
		}

		.sidebar.left {
			transform: translateX(-100%);
		}

		.sidebar.active {
			transform: translateX(0);
			filter: blur(0);
			opacity: 1;
		}
		.left-close-btn,
		.right-close-btn {
			position: absolute;
			top: 10px;
			right: 10px;
			background-color: #ffffff;
			border: none;
			font-size: 22px;
			color: #333;
			cursor: pointer;
			border-radius: 50%;
			width: 36px;
			height: 36px;
			line-height: 36px;
			text-align: center;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
			transition: all 0.2s ease-in-out;
		}
		.close-btn:hover {
			background-color: #f8f9fa;
			color: #dc3545;
			transform: scale(1.1);
		}
		.mobile-only {
			display: block;
		}
		.sidebar.right {
			position: fixed;
			right: 0;
			top: 115px;
			height: calc(100% - 150px);
			width: 50%;
			max-width: 400px;
			background: white;
			transform: translateX(100%);
			transition: transform 0.3s ease-in-out;
			box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
			z-index: 1005;
			overflow-y: auto;
		}
		.sidebar.right.active {
			transform: translateX(0);
		}
		.sidebar.left {
			position: fixed;
			top: 115px;
			bottom: 0;
			left: 0;
			height: auto;
			max-height: calc(100vh - 115px);
			width: 80%;
			max-width: 400px;
			background: white;
			overflow-y: auto; /* key for internal scrolling */
			transform: translateX(-100%);
			transition: transform 0.3s ease-in-out;
			box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
			z-index: 1000;
		}

		.sidebar.left.active {
			transform: translateX(0);
		}
	}

	@media (min-width: 768px) and (max-width: 1024px) {
		.sidebar.right.active .sidebar-content {
			margin-top:30px;
		}
	}

	footer {
		max-width: 1800px;
		margin:auto;
		width:100%;		
	}
	@media (max-width: 576px) {
            .mobile-page-hide {
                display: none !important;
            }
    }

    @media (min-width: 1025px) {
		.content-container {
			padding-top: 115px;
		}
	}

	.hover-link:hover {
        background-color: #f0f0f0;
        transition: background-color 0.3s ease;
    }
    
    .hover-link.active {
        background-color: #059669;
        color: white !important;
    }



