/* Admin shell: match 260425 researcher/index sign-in chrome (header + panel + grid-form). */

.page.researcher-page {
  max-width: 1100px;
  width: 100%;
  min-width: 0;
  padding-top: 24px;
}

.researcher-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.researcher-header h1 {
  font-size: clamp(20px, 3vw, 30px);
  min-width: 0;
}

.page.researcher-page .console-root,
.page.researcher-page .panel {
  min-width: 0;
  max-width: 100%;
}

.page.researcher-page .panel {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  border: none;
}

.page.researcher-page .panel h2 {
  margin: 0 0 12px;
}

.console-root {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.grid-form {
  display: grid;
  gap: 10px;
}

.grid-form label {
  display: grid;
  gap: 6px;
}

.grid-form input,
.grid-form textarea,
.grid-form select {
  min-height: 40px;
  background: var(--surface-2);
  border: 1px solid #4a4a4a;
  color: var(--fg);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
}

.page.researcher-page .grid-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
.page.researcher-page .grid-form textarea,
.page.researcher-page .grid-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hint-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  max-width: 100%;
  overflow-wrap: anywhere;
}
