body {
  background: linear-gradient(135deg, #ff007f, #00ffff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

.container {
  background: #222;
  border: 5px solid #ff0;
  border-radius: 20px;
  padding: 20px;
  padding-top: 0px;
  width: 90%;
  box-shadow: 0 0 15px #ff0;
}

h1 {
  font-family: 'Comic Sans MS', 'Comic Sans', sans-serif !important;
  font-weight: normal;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.chat-window {
  background: #000;
  padding: 15px;
  border-radius: 10px;
  height: 60vh;
  overflow-y: scroll;
  font-size: 1rem;
  margin-bottom: 10px;
  white-space: pre-wrap;
  line-height: 1.3;
}

.chat-window .message {
  margin-bottom: 1em;
}

.chat-window .you {
  color: #00ffff;
  font-weight: bold;
}

.chat-window .roland {
  color: #ffff00;
  font-weight: bold;
}

.chat-window .roland-response,
.chat-window .user-response {
  color: #fff;
}

/* Markdown spacing and formatting */
.roland-response p {
  margin: 0em 0;
}

.roland-response ul {
  margin: 0;
  padding: 0 0 0 1.5em;
  list-style: none;
}

.roland-response li {
  margin: 0.1em 0;
  position: relative;
  padding-left: 1.5em;
}

/* Optional: tweak heading sizes in replies */
.roland-response h1,
.roland-response h2,
.roland-response h3 {
  margin: 0.4em 0 0.2em;
  font-size: 1.1em;
  font-weight: bold;
  color: #ff0;
}

.roland-response ul li::before {
  content: "🧀";
  position: absolute;
  left: 0;
}

.input-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.input-area button {
  background: #ff0;
  color: #000;
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.input-area button:hover {
  background: #fff700;
}

