/* ============================
   こえのあしあと - チャット専用CSS
   ============================ */

/* フォーム全体 */
.chat-input {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  padding: 16px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

/* ラベル */
.chat-input label {
  font-weight: bold;
  font-size: 15px;
  color: #444;
}

/* 入力欄 */
.chat-input input[type="text"],
.chat-input input[type="number"],
.chat-input select,
.chat-input textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

/* フォーカス時 */
.chat-input input:focus,
.chat-input select:focus,
.chat-input textarea:focus {
  border-color: #5aa9e6;
  background: #f0f8ff;
  outline: none;
}

/* 相談内容のテキストエリア */
.chat-input textarea {
  height: 140px;
  resize: vertical;
}

/* 送信ボタン */
.chat-input button {
  padding: 12px;
  background: #5aa9e6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.chat-input button:hover {
  background: #3f8fce;
}

.chat-input button:active {
  transform: scale(0.97);
}