/* Basic styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding-top: 50px; /* Menu fix under header */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; /* Fixed Height */
  background-color: #efe52e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 100; /* Force Header on top */
}

.header button {
  margin-right: 15px;
}

/* Container styles */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px; /* maximum width */
  margin: 0 auto; /* Center horizontally */
}

/* Logo styles */
.logo {
  display: block;
  margin-right: 10px;
}

.logo img {
  height: 40px; 
}

.menu {
  position: fixed;
  top: 50px; /* ensure the menu starts below the header */
  width: 100%;
  background-color: #333;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  padding: 15px;
  border-bottom: 1px solid #555;
}

.menu ul li:last-child {
  border-bottom: none;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked + .menu {
  max-height: 200px; /* menu max-height */
}

.content {
  margin-top: 50px;
  padding: 20px;
}
