/* search.phpの検索フォーム用スタイル */

.search-form-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  border: 1px solid #D0D0D0;
  border-radius: 25px; /* 角を丸くする */
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-input {
  flex-grow: 1;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  outline: none;
  background-color: transparent;
}

.search-button {
  background-color: transparent; /* ボタンの背景を透明に */
  border: none;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.search-button:hover {
  opacity: 0.7;
}

.search-button img {
  width: 24px;
  height: 24px;
}
