.booking-chat-container {
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 500px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.booking-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.booking-message {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.booking-message.user {
  text-align: right;
}

.booking-message.ai {
  text-align: left;
}

.booking-input-form {
  display: flex;
  border-top: 1px solid #eee;
}

.booking-input {
  flex: 1;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-bottom-left-radius: 8px;
}

.booking-input:focus {
  outline: none;
}

.booking-send-btn {
  background: #10a37f;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-bottom-right-radius: 8px;
}

.booking-send-btn:hover {
  background: #0e8c6a;
}
