/* Dropdown Button */
.dropbtn {
    background-color: #024758;
    border: 1px solid teal;
    border-radius: 20px;
    color: azure;
    font-size: 16px;
    border: none;
    height: 80%;
    border-radius: 20px;
    border: 1px solid teal;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    float: left;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: darkslategray;
    border: 1px solid teal;
    border-radius: 20px;
    width: fit-content;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content button {
    color: azure;
    text-decoration: none;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content button:hover {background-color: darkslategray;}
  
  /* 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: lightslategray;}