.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #333;
  width: 100%;
  color: white;
  padding: 0;
  margin: 0;
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 0;
}


    /* Dropdown button */
    .dropbtn {
      background-color: #f7f7f8; /* Match the background color of the top-bar */
      color: black; /* Set the icon color to black */
      padding: 14px;
      font-size: 16px;
      border: none;
      cursor: pointer;
    }

    .dropbtn .fa-bars {
      margin-left: 10px;
      color: black; /* Keep the icon black */
    }




    /* Dropdown content */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 200px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      z-index: 1;
      right: 0; /* Align dropdown to the right edge of the button */
    }


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

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

    .show {
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .navbar {
        text-align: center;
      }

      .menu-wrapper {
        width: 100%;
      }

      .dropbtn {
        width: 100%;
      }

      .dropdown-content {
        width: 100%;
        left: 0;
      }
    }
    
    

    
    
.header-notice {
    background-color: #656565;
    padding: 3px;
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.header-notice p {
    margin: 0;
    font-weight: bold;
}

.header-notice .button {
    display: inline-block;
    margin-top: 2px;
    padding: 2px 2px;
    background-color: #444444;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 12px;
}

    
    
.header-notice-black {
    background-color: #333;
    padding: 3px;
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid #333;
}

.header-notice-black p {
    margin: 0;
    font-weight: bold;
}
