 /* Dropdown Button */
.dropbtn {
  background-color: green; /* #00a33d; */
  color: white;
  padding: 12px;
  font-size: 18px;
	font-weight: bold;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: green; /* #00a33d; */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	right: 0; /* Right edge aligns to button’s right edge */
  left: auto; /* Prevents stretching to left */
	margin: 0;
	padding: 0;
  display: none;
  position: absolute;
  background-color: #f0f0f0; 
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
	font-size: 18px;
}

/* Overlay for darkening effect */
.overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Covers entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1000; /* Below dropdown, above content */
}

/* Show overlay when dropdown is active */
.dropdown-content.show ~ .overlay {
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a: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;} 
