body {
  font-family: Arial, sans-serif;
  background-color: #ffe4ec;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.chat-container {
  width: 500px;
  background-color: #fff0f5;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid #ffb6c1;
}

.chat-box {
  padding: 20px;
  height: 500px;
  overflow-y: auto;
  border-bottom: 2px solid #ffb6c1;
  color: #5e0035;
}

.input-area {
  display: flex;
  padding: 15px;
  background-color: #ffe4ec;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ff69b4;
  border-radius: 10px;
  font-size: 16px;
}

button {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff1493;
}
.message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.bubble {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.4;
  display: inline-block;
}

.user .bubble {
  background-color: #ffb6c1;
  color: #4a0033;
  align-self: flex-end;
  text-align: right;
}

.bot .bubble {
  background-color: #fff0f5;
  color: #5e0035;
  border: 1px solid #ff69b4;
  align-self: flex-start;
}
.chat-header {
  background-color: #ff69b4;
  padding: 15px;
  text-align: center;
  color: white;
  font-weight: bold;
  border-bottom: 2px solid #ffb6c1;
}
