@import "/shared.css";

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

.sidebar-hint {
  font-size: 13px;
  color: #666;
  padding: 0 8px;
  line-height: 1.5;
}

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

#issue-title {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
#issue-title:focus {
  outline: none;
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

#issue-body {
  width: 100%;
  min-height: 200px;
  resize: vertical;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
#issue-body:focus {
  outline: none;
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

.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;
}
