* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #eef3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.chat-wrapper {
  width: 380px;
  height: 600px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Header */
.chat-header {
  padding: 15px;
  background: #0d6efd;
  color: white;
  border-radius: 14px 14px 0 0;
}

.bot-info {
  display: flex;
  align-items: center;
}

.bot-avatar {
  font-size: 28px;
  margin-right: 10px;
}

.status {
  font-size: 12px;
  color: #cfe2ff;
}

/* Body */
.chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f8f9fa;
}

/* Messages */
.msg {
  max-width: 75%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.user-msg {
  background: #0d6efd;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.bot-msg {
  background: #e9ecef;
  color: #333;
  margin-right: auto;
  border-bottom-left-radius: 2px;
}

/* Footer */
.chat-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.chat-footer input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.chat-footer button {
  margin-left: 8px;
  padding: 0 15px;
  border: none;
  border-radius: 8px;
  background: #0d6efd;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Disclaimer */
.disclaimer {
  font-size: 11px;
  padding: 6px;
  text-align: center;
  background: #fff3cd;
  color: #856404;
  border-radius: 0 0 14px 14px;
}
