/* Dropdown Button */.dropbtn{background-color:#3498DB;color:white;padding:16px;font-size:16px;border:none;cursor:pointer;}/* Dropdown button on hover & focus */.dropbtn:hover,.dropbtn:focus{background-color:#2980B9;}/* The container <div> - needed to position the dropdown content */.dropdown{position:relative;display:inline-block;}/* Dropdown Content (Hidden by Default) */.dropdown-content{display:none;position:absolute;background-color:#f1f1f1;min-width:160px;box-shadow:0px8px16px0pxrgba(0,0,0,0.2);z-index:1;}/* Links inside the dropdown */.dropdown-contenta{color:black;padding:12px16px;text-decoration:none;display:block;}/* Change color of dropdown links on hover */.dropdown-contenta:hover{background-color:#ddd}/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */.show{display:block;}
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */functionmyFunction(){document.getElementById("myDropdown").classList.toggle("show");}// Close the dropdown menu if the user clicks outside of itwindow.onclick=function(event){if(!event.target.matches('.dropbtn')){vardropdowns=document.getElementsByClassName("dropdown-content");vari;for(i=0;i<dropdowns.length;i++){varopenDropdown=dropdowns[i];if(openDropdown.classList.contains('show')){openDropdown.classList.remove('show');}}}}