@charset "UTF-8";
    /* Style the dropdown button */
    .dropdown1 {
      z-index: 3;
      position: fixed;
      top: 125px; 
      display: inline-block;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add some depth */
    }

    /* Style for the dropdown content */
    .dropdown1-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    /* Dropdown items */
    .dropdown1-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    /* Change color of dropdown items on hover */
    .dropdown1-content a:hover {
      background-color: #f1f1f1;
    }

    /* Show dropdown on click */
    .show1 {
      display: block;
    }