/* Contenedor principal del chat */
#chat-container {
  height: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background: #f8f9fa;
}

/* Área donde se muestran los mensajes */
#chat-mensajes {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: #ffffff;
}

/* Cada mensaje */
.mensaje {
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #e9ecef;
  font-size: 14px;
}

.mensaje strong {
  color: #d63384;
  margin-right: 5px;
}

/* Input + botón */
#chat-form {
  display: flex;
  gap: 5px;
  padding: 10px;
  border-top: 1px solid #ccc;
  background: #f1f1f1;
}

#chat-form input[type="text"] {
  flex: 1;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Botón enviar */
#chat-form button {
  white-space: nowrap;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  #chat-container {
    max-height: 300px;
  }
}
