/*Menu bar*/
/* Top bar */
.top-bar {
  display: flex;
  justify-content: flex-start;
  padding: 10px 16px;
}

/* Menu button */
#menu-toggle {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown menu */
.menu {
  position: absolute;
  top: 48px;
  left: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 160px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  z-index: 1000;
}

.menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
}

.menu a:hover {
  background: #f3f3f3;
}

.hidden {
  display: none;
}

.footer {
  float: left;
}