#chat-pane {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  grid-gap: 1rem;
  height: 100%;
}
#chat-pane #chat-window {
  grid-area: 1/1/2/2;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 1rem;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scroll-behavior: smooth;
}
#chat-pane #chat-window .message {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  max-width: 80%;
}
#chat-pane #chat-window .user-message {
  align-self: flex-start;
  background-color: #007bff;
  color: white;
}
#chat-pane #chat-window .assistant-message {
  align-self: flex-end;
  background-color: #e9e9eb;
  color: #333;
}
#chat-pane #chat-form {
  grid-area: 2/1/3/2;
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
#chat-pane #chat-form.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#chat-pane #chat-form.disabled textarea {
  background-color: #eee;
}
#chat-pane #chat-form textarea {
  flex-grow: 1;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: none;
  overflow-y: hidden;
  min-height: 40px;
  max-height: 200px;
  font-family: inherit;
  font-size: inherit;
}
#chat-pane #chat-student-info {
  grid-area: 1/2/3/3;
  border-left: 1px solid #eee;
  padding-left: 1rem;
  overflow-y: auto;
}

/*# sourceMappingURL=chat.css.map */
