
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.hero {
  text-align: center;
  margin-top: 100px;
}

h1 {
  font-size: 42px;
}

.toggle {
  margin: 20px;
}

.toggle button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #1e293b;
  color: white;
}

.toggle .active {
  background: #3b82f6;
}

.search-box {
  display: flex;
  justify-content: center;
  margin: 30px;
}

.search-box input {
  padding: 15px;
  width: 300px;
  border: none;
  outline: none;
}

.search-box select {
  padding: 15px;
}

.search-box button {
  padding: 15px 20px;
  background: #3b82f6;
  border: none;
  color: white;
  cursor: pointer;
}

#result {
  margin-top: 30px;
  font-size: 18px;
}

.available {
  color: #22c55e;
}

.unavailable {
  color: #ef4444;
}

button.order {
  margin-top: 10px;
  padding: 10px 20px;
  background: #22c55e;
  border: none;
  color: white;
  cursor: pointer;
}

.hidden {
  display: none;
}
