body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.container {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#search-box {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#search-button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#search-button:hover {
  background-color: #0056b3;
}

#results {
  margin-top: 20px;
  text-align: left;
  max-height: 400px; /* 結果エリアの最大高さ */
  overflow-y: scroll; /* 縦のスクロールを可能に */
}
/* タブのデザイン */
#tabs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.tab {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 5px;
}

.tab:hover {
  background-color: #0056b3;
}

.logo {
  width: 200px;
  height: auto; 
  display: block;
  margin: 0 auto;
}
