/* スコアレベル別のバー色 */
.progress-low    { background-color: #f44336; } /* 赤 */
.progress-midlow { background-color: #ff9800; } /* オレンジ */
.progress-mid    { background-color: #ffeb3b; } /* 黄 */
.progress-high   { background-color: #4CAF50; } /* 緑 */
.progress-top    { background-color: #2196F3; } /* 青 */

/* タイピング練習ボックス */
#typing-game {
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  background: #fdfdfd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
}

#typing-game p {
  font-size: 18px;
  margin-bottom: 12px;
}

#typing-game textarea {
  width: 100%;
  height: 100px;
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #bbb;
  resize: none;
}

#typing-game button {
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

#typing-game button:hover {
  background-color: #45a049;
}

#typing-result {
  font-weight: bold;
  color: #2c7;
  margin-top: 10px;
  font-size: 18px;
}

/* ランキング表示 */
.typing-ranking {
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
}

.typing-ranking h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.typing-ranking ol {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* タイピング時のアニメーション */
@keyframes flashInput {
  0%   { background-color: #eaffea; }
  100% { background-color: white; }
}
.typing-flash {
  animation: flashInput 0.3s ease;
}

@keyframes flashError {
  0%   { background-color: #ffe5e5; }
  100% { background-color: white; }
}
.typing-error {
  animation: flashError 0.3s ease;
}