/** 
 * CSS styles for dropdown lists
 *
 * Use these classes:
 * .dropdown - the element which the dropdown menu drops from, usually a <li>
 * .dropbtn - the button which pins the dropdown menu, usually an <a>
 * .dropdown-content - the dropdown menu container, usually a <div>
 */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-background-dropdown);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-content > * {
    flex: 1 1 0;
}

li.dropdown {
  display: inline-block;
}

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

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}
