body {
  background-color: white;
  background-size: cover;
}
.header-container {
  background-color: whitesmoke;
  padding: 15px 20px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-button {
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo-button img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  justify-content: center;
}

.nav-menu button {
  background-color: whitesmoke;
  color: black;
  border: 1px solid #ddd;
  border-radius: 0;
  width: 100px;
  height: 40px;
  font-family: 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-menu button:hover {
  background-color: lightgray;
}

.mobile-menu-toggle {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: black;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: whitesmoke;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 20px;
      transition: left 0.3s ease;
      gap: 20px;
  }
  
  .mobile-menu-toggle:checked ~ .nav-menu {
      left: 0;
  }
  
  .mobile-menu-toggle:checked + .menu-toggle span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle:checked + .menu-toggle span:nth-child(2) {
      opacity: 0;
  }
  
  .mobile-menu-toggle:checked + .menu-toggle span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }
  
  .logo-button {
      margin-right: auto;
  }
}
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-family: Arial, sans-serif;
}
th {
  background-color: #f5f5f5;
}
.order-form {
  margin-top: 40px;
  text-align: center;
  font-family: Arial, sans-serif;
}
.quantity-btn {
  padding: 4px 10px;
  margin: 0 5px;
  border: none;
  border-radius: 4px;
  background-color: #e0e0e0;
  cursor: pointer;
}
.quantity-btn:hover {
  background-color: #ccc;
}
.product-selection {
  text-align: center;
  margin-bottom: 30px;
}
.product-selection button {
  margin: 5px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  font-family: Arial, sans-serif;
}
.product-selection button:hover {
  background-color: #e0e0e0;
}
input[type="password"], input[type="submit"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}
input[type="submit"]:hover {
  background-color: #45a049;
}