/* 単一責務: ヘッダー操作群の入力とボタンの見た目を定義する。 */
.controls input,
.controls select,
.controls button,
.file-button {
  height: 34px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  padding: 0 10px;
}

.controls button,
.file-button {
  cursor: pointer;
  white-space: nowrap;
}

.controls button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.file-button input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}
