/* 全体をGitLabライトモード風に */
body {
  background: #f5f6fa; /* 明るいグレー系の背景 */
  color: #212529;      /* 濃いグレーの文字色 */
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}

/* タイトルをGitLab風に */
h1 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 24px;
  color: #fc9c26; /* GitLabオレンジ */
  letter-spacing: 1px;
}

/* フォームを中央に配置し、カード風に */
form {
  background: #fff; /* 白いカード */
  border: 1px solid #e5e7eb; /* 薄いグレーの枠線 */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.06);
  padding: 32px 24px;
  max-width: 400px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ラベルをGitLab風に */
form label {
  display: block;
  margin-bottom: 18px;
  width: 100%;
  color: #212529; /* 濃いグレーで視認性UP */
  font-size: 1em;
  font-weight: 500;
}

/* プルダウンBOXと入力BOXの色・質感を完全に揃える */
form select,
form input[type="number"] {
  width: 100%;
  box-sizing: border-box;
  background: #fff;           /* 白背景 */
  color: #212529;             /* 濃いグレー文字 */
  border: 1px solid #e5e7eb;  /* 薄いグレー枠線 */
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1em;
  margin-top: 6px;
  margin-bottom: 0;
  transition: border 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

/* フォーカス時の色も統一 */
form select:focus,
form input[type="number"]:focus {
  border: 1.5px solid #fc9c26; /* オレンジでアクセント */
  background: #fffbe6;         /* 薄いオレンジ背景（そのまま） */
}

/* ボタンはマットなオレンジ系 */
form button {
  width: 100%;
  box-sizing: border-box;
  background: #fc9c26;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

form button:hover {
  background: #fc9c26; /* ホバー時も同じオレンジに統一 */
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Startボタンを大きく・目立たせる */
#start-btn {
  width: 80%;
  max-width: 240px;
  background: #fc9c26;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px 0;
  font-size: 1.4em;
  font-weight: bold;
  margin: 24px auto 0 auto;
  cursor: pointer;
  display: block;
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.10);
  transition: background 0.2s, transform 0.2s;
}

#start-btn:hover {
  background: #fc9c26; /* ホバー時も同じオレンジに統一 */
  transform: translateY(-2px) scale(1.05);
}

/* 結果表示エリアをGitLab風カードに */
#recipe-result {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.06);
  max-width: 600px;
  margin: 0 auto 32px auto;
  padding: 32px 24px;
  color: #212529;
  font-size: 1.08em;
}

/* ステップのラベルをGitLab風に強調 */
.step-label {
  color: #fc9c26; /* オレンジでアクセント */
  font-size: 1.15em;
  font-weight: bold;
  letter-spacing: 1px;
}

/* ステップリストの間隔 */
#recipe-result ul li {
  margin-bottom: 18px;
  line-height: 1.6;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

/* hrを細くGitLab風に */
hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}