/* common.css - サイト全体で共通のスタイル */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 8px;
    text-align: left;
}

input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    border: none;
    padding: 5px;
}

input[type="text"]:focus {
    outline: none;
    background-color: #eef;
}
