
/* テーブル全体の外観 */
.table {
    margin: 2em auto;
    padding: 1em;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    width: fit-content;
}

/* テーブル本体の装飾 */
.table table {
    border-collapse: collapse;
    width: 100%;
    min-width: 300px;
    background: #fafbfc;
}

.table th, .table td {
    border: 1px solid #ccc;
    padding: 0.7em 1.2em;
    text-align: center;
}

.table th {
    background: #e3eaf2;
    font-weight: bold;
}

.table tr:nth-child(even) {
    background: #f5f7fa;
}