body{
background:#111;
color:#fff;
font-family:Arial;
}

.chat-box {
  width: 100%;
  max-width: 500px;
  background: #121212;
  border-radius: 12px;
  padding: 15px;
  box-sizing: border-box;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Messages area */
#chatmessages {
  height: 220px;
  overflow-y: auto;
  background: #0b0b0b;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Individual message */
.msg {
  margin-bottom: 8px;
  line-height: 1.4;
}

.msg b {
  color: #1db954;
}

/* Quick reactions */
.quick-reactions {
  text-align: center;
  margin-bottom: 10px;
}

.quick-reactions span {
  font-size: 20px;
  margin: 0 6px;
  cursor: pointer;
  transition: transform 0.1s;
}

.quick-reactions span:hover {
  transform: scale(1.2);
}

/* Form */
.chat-box form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Inputs */
.chat-box input,
.chat-box textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #181818;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

/* Textarea size */
.chat-box textarea {
  resize: none;
  height: 60px;
}

/* Emoji button */
#emojiBtn {
  background: #1db954;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
}

/* Send button */
.chat-box button[type="submit"],
.chat-box form button:last-child {
  background: #1db954;
  border: none;
  padding: 10px;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

/* Scrollbar (optional nice touch) */
#chatmessages::-webkit-scrollbar {
  width: 6px;
}
#chatmessages::-webkit-scrollbar-thumb {
  background: #1db954;
  border-radius: 10px;
}
