/* Template CSS */

        :root {
            --mew-teal: #009688; 
            --mew-teal-dark: #00796b;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding-top: 60px;
        }

        .bg-teal {
            background-color: var(--mew-teal) !important;
        }

        .semi-opaque-menu {
            background-color: rgba(0, 150, 136, 0.9) !important; 
            backdrop-filter: blur(5px);
        }

        .custom-toggler {
            border: none;
            color: white;
            font-size: 1.5rem;
        }
        
        .custom-toggler:focus {
            box-shadow: none;
        }

        /* Footer Links */
        .footer-link {
            color: #e0f2f1;
            text-decoration: none;
            margin: 0 12px;
            font-weight: 500;
        }
        
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }

        /* Menu Link Styling */
        .offcanvas-body .nav-link,
        .offcanvas-body .dropdown-item {
            color: white;
            font-size: 1.2rem;
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .offcanvas-body .nav-link:hover,
        .offcanvas-body .dropdown-item:hover {
            background-color: rgba(255,255,255,0.1);
            color: #b2dfdb;
            transition: all 0.3s ease;
        }

        /* Style the dropdown menu container to blend with the offcanvas */
        .offcanvas-body .dropdown-menu {
            background-color: rgba(0, 0, 0, 0.1);
            border: none;
            border-radius: 0;
            margin: 0;
            padding: 0;
        }
        
        /* Indent dropdown items slightly for visual hierarchy */
        .offcanvas-body .dropdown-item {
            padding-left: 2.5rem;
            font-size: 1.1rem;
        }
        
        /* Dropdown Headers (For your nested docs menu) */
        .offcanvas-body .dropdown-header {
            color: #b2dfdb;
            padding-left: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

		/* =========================================
		   MOBILE OFFCANVAS MENU ONLY (Under 992px)
		   ========================================= */
		@media (max-width: 991.98px) {
			.semi-opaque-menu {
				background-color: rgba(0, 150, 136, 0.9) !important; 
				backdrop-filter: blur(5px);
			}

			.offcanvas-body .nav-link,
			.offcanvas-body .dropdown-item {
				color: white !important;
				font-size: 1.2rem;
				padding: 12px 15px;
				border-bottom: 1px solid rgba(255,255,255,0.1);
			}

			.offcanvas-body .nav-link:hover,
			.offcanvas-body .dropdown-item:hover {
				background-color: rgba(255,255,255,0.1);
				color: #b2dfdb !important;
			}

			.offcanvas-body .dropdown-menu {
				background-color: rgba(0, 0, 0, 0.1);
				border: none;
				border-radius: 0;
				margin: 0;
				padding: 0;
			}

			.offcanvas-body .dropdown-item {
				padding-left: 2.5rem;
			}
		}

		/* =========================================
		   DESKTOP NAVBAR ONLY (992px and up)
		   ========================================= */
		@media (min-width: 992px) {

			/* OVERRIDE: Force the dropdown background to be teal */
			.navbar .dropdown-menu {
				background-color: var(--mew-teal) !important; 
				border-radius: 8px;
				border: 1px solid rgba(255, 255, 255, 0.2); 
				box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); 
				margin-top: 10px; 
			}

			/* Ensure the links inside are white and visible */
			.navbar .dropdown-item {
				color: white !important;
				font-weight: 500;
				padding: 8px 20px;
				transition: background-color 0.2s ease;
			}

			/* Darker teal on hover for a premium feel */
			.navbar .dropdown-item:hover, 
			.navbar .dropdown-item:focus {
				background-color: var(--mew-teal-dark) !important; 
				color: white !important;
			}

			/* Desktop main navbar link hover */
			.navbar-nav .nav-link {
				font-weight: 500;
				padding-right: 1rem !important;
				padding-left: 1rem !important;
				transition: color 0.3s ease;
			}

			.navbar-nav .nav-link:hover {
				color: #b2dfdb !important; 
			}
		}