#pcs-chatbot {
  font-family: inherit;
  border-top: 1px solid #ccc;
  padding: 2rem 1rem;
  border-radius: 0;
  background-color: var(--wp--preset--color--background, #fff);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: none;
  box-sizing: border-box;
}
#pcs-chatbot input[type="text"] {
  width: 80%;
  padding: 1rem;
  margin-right: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1.1rem;
}
#pcs-chatbot button {
  padding: 1rem 1.5rem;
  border: none;
  background-color: var(--wp--preset--color--primary, #0073aa);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}
#pcs-chatbot button:hover {
  background-color: #005177;
}
#chat-output {
  margin-top: 2rem;
  max-height: 400px;
  overflow-y: auto;
  padding-top: 1rem;
  font-size: 1rem;
}
#chat-output p {
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  #pcs-chatbot input[type="text"] {
    width: 100%;
    margin-bottom: 1rem;
  }
  #pcs-chatbot button {
    width: 100%;
  }
}
