:root {
  --grey: #f5f5f5;
  --blue: #3d88f9;
  --black: #1a1a1a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background: #f1f5fb;
  overflow: hidden;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.left-image {
  flex: 1;
  background-image: url('fondo_glucube.png');
  background-size: cover;
  background-position: center;
}

.chat-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  background-size: cover;
  border-left: 1px solid #ddd;
}

.chat-title {
  background: white;
  padding: 30px 20px 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.chat-title h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.chat-title p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

.chat {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.chat .user {
  display: flex;
  justify-content: flex-end;
}

.chat .user p {
  background-color: black;
  color: white;
  font-weight: bold;
  text-align: right;
  border-radius: 16px;
  padding: 14px 18px;
  margin: 6px 0;
  max-width: 80%;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.input-area {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #eee;
  background-color: #fafafa;
}

.input-area input {
  flex: 1;
  border: none;
  background-color: #eee;
  border-radius: 20px;
  padding-left: 16px;
  font-size: 15px;
  height: 40px;
}

.input-area button {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  margin-left: 12px;
  border: none;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.input-area button img {
  width: 32px;
  height: 32px;
}

.input-area button:hover {
  background-color: #2b6fd8;
}
.chat .model {
  background-color: white;
  color: #222;
  border-radius: 16px;
  padding: 14px 18px;
  margin: 6px 0;
  max-width: 80%;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.chat .model p {
  margin: 0 0 8px 0;
}

.chat .model ul {
  padding-left: 20px;
  margin: 8px 0;
}

.chat .model li {
  margin-bottom: 6px;
}

.chat .model strong {
  font-weight: bold;
}

.chat .model a {
  color: #3d88f9;
  text-decoration: none;
}

.chat .model a:hover {
  text-decoration: underline;
}
.chat .model strong,
.chat .model p strong,
.chat .model li strong {
  font-weight: 700; /* o bold */
}
.chat .model strong {
  font-weight: 700 !important;
}
