/* Style the dropdown container */
.dropdown-container {
    margin-top: 10px;
    position: relative;
  }
  
  /* Style the dropdown button */
  .dropbtn {
    background-color: transparent;
    color: #000000;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-left: 70px; 
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
  }
  
  /* Style the dropdown content */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
  }
  
  /* Style the buttons inside the dropdown */
  .dropdown-content button {
    color: #333;
    font-size: 16px;
    border: none;
    background-color: transparent;
    text-align: left;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
  }
  
  /* Add a hover effect to the buttons inside the dropdown */
  .dropdown-content button:hover {
    background-color: #f1f1f1;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown-container:hover .dropdown-content {
    display: block;
  }
  