/* layout.css – Elrendezések */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* layout.css – Chatbox és parancssor elhelyezése */

#chatbox-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100vh - var(--header-height, 80px));
  padding: 1rem;
  box-sizing: border-box;
}

#chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 1rem;
}

#command-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ccc;
  padding: 0.5rem;
  border-radius: 6px;
  background-color: #fff;
}