/* butonite */

.nav-button {
    text-decoration: none;
    border-radius: 6px;
    padding: 12px 16px;
    margin-left: 6px;
    cursor: pointer;
    transition: opacity 0.15s;
}
.nav-button:hover {
    background-color: #f0f0f0; 
    opacity: 0.7;
}
.nav-button:active {
    opacity: 0.3;
}
.nav-button-text {
    font-size: 16px;
    color: rgb(51, 51, 51);
    white-space: nowrap;
    user-select: none;
}

.nav-icon {
  text-decoration: none;
  border-radius: 2px;
  padding: 10px 16px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.nav-icon:hover {
  opacity: 0.7;
}
.nav-icon:active {
  opacity: 0.3;
}
#home-icon {
    height: 19.2px;
}

  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border-radius: 6px;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
    user-select: none;
    cursor: pointer;
  }
  
  /* Add a background color to navbar links on hover */
  .dropdown:hover .dropbtn { 
    background-color: #f0f0f0; 
    opacity: 0.7;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    user-select: none;
    cursor: pointer;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #f0f0f0; 
    opacity: 0.7;
  }

  .dropdown-content a:active {
    opacity: 0.3;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
    background-color: white; 
    border-radius: 6px;
  }