@charset "UTF-8";
/* MD Jump Menu */

        /* Example of relative positioning */
        #md-jump-menu-relative {
            position: relative; /* Positions the menu relative to its normal position */
            margin: 0.25em; /* space around button */
        }

        /* Example of absolute positioning */
        #md-jump-menu-absolute {
            position: absolute; /* Positions the menu at an exact location on the page */
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            z-index: 150;
        }

        /* Example of fixed positioning */
        #md-jump-menu-fixed {
            position: fixed; /* Positions the menu relative to the viewport */
            left: 0;
            top: 0;
        }
        
        /* Containing Block */
        #md-jump-menu {
        	position: relative;
        	height: 2.5em;
        	margin: 2em 0;
        }

        /* Base styles for the jump menu container */
        .md-jm-container {
            list-style-type: none; /* Removes bullet points from the list */
            padding: 0;
            margin: 0;
            display: inline-block; /* Aligns the menu inline */
            cursor: pointer; /* Changes the cursor to a pointer when hovering */
            background-color: rgb(200,200,200); /* Light grey background for the menu */
            border: 1px solid rgb(0,0,0); /* Adds a border around the menu */
            border-radius: 0.25em; /* rounded corners */
            position: relative; /* Ensures dropdown items are positioned correctly */
        }

        /* Styles for each list item in the menu */
        .md-jm-container > li {
            padding: 0; /* Adds padding inside each list item */
            color: rgb(0,0,0); /* Sets text color to dark grey */
            white-space; nowrap;
        }

        /* Style the first list item in the menu */
        .md-jm-container > li:first-child {
            padding: .25em 0.5em;; /* Adds padding inside first list item */
            color: rgb(0,0,0); /* Sets text color */
        }
        
        .md-jm-container > li:first-child::after {
            content: "\2192";
            position: relative;
            display: inline-block;
            font-weight: bold;
            padding-left: 1em;
        }

        /* Styles for dropdown items (initially hidden) */
        .md-jm-container > li + li {
            display: none; /* Hides all list items except the first one */
            position: relative; /* Ensures dropdown items are displayed relative to the container */
            background-color: rgb(200,200,200); /* Background for dropdown items */
            border-top: 1px solid rgb(0,0,0); /* Adds a border on top of each dropdown item */
        }

        /* Styles to show dropdown items when the menu is active */
        .md-jm-container.mdJMActive > li + li {
            display: list-item; /* Displays the dropdown items as a list */
        }

        /* Hover effect for list items */
        .md-jm-container > li:hover {
            background-color: rgba(255,255,255,0.2); /* Changes background color on hover */
        }

        /* Styles for anchor links inside the menu */
        .md-jm-container a {
            color: inherit; /* Inherits the color from the parent list item */
            text-decoration: none; /* Removes underline from links */
            display: block; /* Makes the entire list item clickable */
            padding:  0.25em 0.5em; /* Adds padding inside the link for easier clicking */
        }

/* EOF */