/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    text-align: center;
}

#buttons-container-1, #buttons-container-2 {
    margin-bottom: 20px;
}

button {
    padding: 0.5em;
    margin: 3px;
    cursor: pointer;
    width: 8em; /* ボタンの幅を統一 */
    box-sizing: border-box; /* パディングを含めてサイズを計算 */
}

#searchInput {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

#results {
    margin-top: 20px;
    display: none; /* 初期状態で非表示にする */
}

.result-row {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
