body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Chat styles */
.chat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.chat-box {
  width: 400px;
  height: 500px;
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  overflow-y: scroll;
  padding: 10px;
}

.chat-message {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  max-width: 70%;
}

.chat-message.right {
  background: #d4ffd4;
  align-self: flex-end;
}

.chat-form {
  display: flex;
  padding: 10px;
}

.chat-form input[type="text"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

.chat-form button {
  padding: 10px;
  border: none;
  border-radius: 0 5px 5px 0;
  background-color: #4caf50;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.chat-form button:hover {
  background-color: #3e8e41;
} /*# sourceMappingURL=style.css.map */

.kakao-ad {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  min-width: 350px;
  min-height: 200px;
}
