 /* Dropdown Button */
	.dropbtn {
		border-radius: 1em;
		background-color: #4CAF50;
		color: #8A084B;
		padding: .8em 1em .8em 1em;
		font-size: 16px;
		border: none;
	}

/* The container <div> - needed to position the dropdown content */
	.dropdown { /* This has the default dropdown position aligned to the left */
		position: relative;
		display: inline-block;
	}
	.dropdownRight { /* This makes the drop down content on the right button to display aligned on the right side */
		direction: rtl; /* rtl = right to left */
	}

/* Dropdown Content (Hidden by Default) */
	.dropdown-content {
		display: none;
		position: absolute;
		background-color: #f1f1f1;
		width: 15em;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	}

/* Links inside the dropdown */
	.dropdown-content a {
		color: black; /* Text */
		padding: .5em .5em;
		text-decoration: none;
		display: block;
	}

/* Change color of dropdown links on hover */
	.dropdown-content a:hover {
		background-color: #82ed88; /* pale green */
	}

/* Show the dropdown menu on hover */
	.dropdown:hover .dropdown-content {
		display: block;
	}

/* Change the background color of the dropdown button when the dropdown content is shown */
	.dropdown:hover .dropbtn {
		background-color: #82ed88; /* pale green */
	} 
