.journalists_wrapper {
}

.journalists_search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.journalists_search input {
  margin-bottom:0;
}

.journalists_search input#search {
  height:35px;
}

.inline_edit_input {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  padding: 4px 6px;
  border-radius: 4px;
  font: inherit;
  color: inherit;
  transition: all 100ms ease-out;
}

.inline_edit_input:hover,
.inline_edit_input:focus {
  border-color: #dfe1e4;
  background: #fff;
}

.inline_edit_input.saved {
  border-color: var(--forest);
  background: #eaf5ee;
}

.inline_edit_input.save-failed {
  border-color: #d9534f;
  background: #fbeaea;
}

.journalists_count {
  font-size:13px;
  color:var(--soft-grey);
  margin-bottom:12px;
}

.journalists_table_wrapper {
  overflow-x:auto;
}

.journalists_table {
  table-layout:auto;
  width:auto;
  min-width:100%;
}

.journalists_table td:first-child {
  white-space:nowrap;
}

.journalists_table .inline_edit_input {
  width:auto;
}