body {
  font-family: 'Arial', sans-serif;
  background: #e5e5ea;
  margin: 0;
  padding: 0;
  color: #555;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

#chat {
  display: none;
  max-width: 400px;
  margin: 50px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#chatOutput {
  height: 500px;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column-reverse;
  background: #a8aeff;
}

.message {
  display: flex;
  padding: 5px 10px;
  border-radius: 15px;
  margin: 5px 0;
  word-wrap: break-word;
}

.user {
  background: #ffd600;
  margin-left: auto;
  margin-right: 10px;
  align-self: flex-end;
}

.assistant {
  background: #fff;
  margin-left: 10px;
  align-self: flex-start;
}

#userInput {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  border-top: 1px solid #ccc;
  outline: none;
}

#chat > button {
  width: 100%;
  padding: 10px;
  background: #fee500;
  border: none;
  outline: none;
}

#menu_selection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu_selection img {
  width: 35%;
  min-width: 300px;
}

#spinner {
  display: none;
  padding: 10px;
  background: #a8aeff;
  font-size: 25px;
}

#map {
  width: 100%;
  height: 350px;
}

.address-info {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}

#map_wrap {
  display: none;
}