* {
    font-family: sans-serif;
}

/* ## VARIABLES ## */

:root {

    --menu-cell-bg-color: rgb(115,185,155,1); /* MENU BACKGROUND COLOR  */
    --menu-first-bg-color: rgb(60,170,100,0.0); /* MENU BACKGROUND COLOR  */
    --menu-hover-bg-color: rgb(60,170,100,0.3); /* MENU HOVER BACKGROUND COLOR  */
}


/* Style The Dropdown Button */

.dropbtn {
  background-color: var(--menu-first-bg-color);
  color: black;
  padding: 10px;
  font-size: 1.25em;
  border: none;
  cursor: pointer;
}

/* 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;
  right:0px;
  padding-right: 5px;
  background-color: var(--menu-cell-bg-color); 
  min-width: 200px; 
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */

.dropdown-content a {
  color: black;
  padding: 12px 10px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */

.dropdown-content a:hover {
    background-color: var(--menu-hover-bg-color);
    color: black;
}

/* 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: var(--menu-hover-bg-color);
  color: black;
}


