@import "/shared.css";

#current-session { flex: 1; min-width: 0; overflow-wrap: anywhere; font-weight: 600; }
#refresh-sessions,
#run-prompt {
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  padding: 6px 10px;
  cursor: pointer;
}
#refresh-sessions:hover,
#run-prompt:not(:disabled):hover { background: #f1f3f4; }
#run-prompt:disabled {
  opacity: 0.6;
  cursor: default;
}

#data-view {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#model-select {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
}

#prompt-input {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.output-box {
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  padding: 12px;
  min-height: 120px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}
