@charset "UTF-8";
/* CSS Document */

.afl-stage-table {
    margin: 20px auto;       /* 上下に余白を取りつつ中央寄せ */
    border-collapse: collapse;
    width: 90%;              /* テーブル幅を少し小さめに調整 */
    max-width: 800px;        /* 最大幅を指定 */
    text-align: center;      /* 中央揃え */
    font-size: 14px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.afl-stage-table th, .afl-stage-table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
}

.afl-stage-table th {
    background-color: #e0e0e0;
    font-weight: bold;
}

.afl-stage-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
