/* ===== 基本スタイル ===== */
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI",
               "Meiryo", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* モーダル表示用ヘルパー */
#modal-settings.is-open,
#loading.is-open {
  display: flex !important;
}

/* ===== フォーム要素のフォーカス ===== */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #1e293b;
  box-shadow: 0 0 0 2px rgba(30, 41, 59, 0.15);
}

textarea {
  resize: vertical;
  line-height: 1.6;
}

/* ===== ローディングスピナー ===== */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e2e8f0;
  border-top-color: #1e293b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== ステータスメッセージ ===== */
.status-ok {
  color: #15803d;
}
.status-ng {
  color: #b91c1c;
}

/* ===== スクロールバー（整形結果プレビュー） ===== */
#preview-json::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
#preview-json::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}

/* ===== ボタンの押下感 ===== */
button {
  transition: transform 0.05s ease, background-color 0.15s ease;
}
button:active:not(:disabled) {
  transform: translateY(1px);
}

/* ===== リンク ===== */
a {
  color: #1d4ed8;
}
a:hover {
  text-decoration: underline;
}
