.chat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
}

.chat-window {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  height: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px auto;
}

.chat-header {
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  background-color: #2196F3;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  padding: 20px;
}

.chat-message-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 10px;
}

.user-message-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}

.chat-message {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 10px 15px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.user-message {
  background-color: #b3d4fc;
  border-radius: 15px;
  padding: 10px 15px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.chat-message img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 8px;
}
.user-message img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 8px;
}
.chat-input-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-top: 1px solid #ccc;
}

.chat-input {
  flex-grow: 1;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 10px;
  font-size: 16px;
  outline: none;
  background-color: #f5f5f5;
}

.chat-button {
  height: 40px;
  margin-left: 10px;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: #fff;
  background-color: #2196F3;
  cursor: pointer;
  outline: none;
}

.chat-button:hover {
  background-color: #0d8bf1;
}

.kakao-ad {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px; /* Increase the minimum width */
  min-height: 100px; /* Increase the minimum height */
  margin-top: 10px ;
  border: 2px solid #ccc; /* Add a border */
  box-shadow: 0 0 5px #ccc; /* Add a box-shadow */
}
