body { 
    font-family:"Arial", sans-serif;  
    width:1920px; 
    height:1080px;
    padding:0px;
    margin:0;
    text-align:center;
    background:transparent;
    color:white;
}
/* display.php用の表示エリア指定 */
div.dis_sec {
    position: absolute;
    bottom:50px;
    left:50px;
    width:480px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    background:transparent;
}
.pagination { 
    margin:40px 0; 
}
button { 
    padding:8px 16px; 
    margin:0 5px; 
    border:none; 
    background-color:#007bff; 
    color:white; 
    cursor:pointer; 
    border-radius:4px; 
}
button:disabled { 
    background-color:#ccc; 
    cursor:not-allowed; 
}

#results-table-i {
    width:480px;
    margin-left:auto;
    margin-right:auto;
}
/* リザルトのtable */
table { 
    border-spacing:0px 5px;
    width:100%; 
}
td { 
    padding:2px 5px; 
    font-size:17px;
    font-weight:600;
    height:50px;
    background-color:rgba(0,0,0,0.8);
    border-right:1px solid #ccc;
}
td:nth-last-child {
    border-right:none;
}
td:nth-child(1) {   /* 順位 */
    width:30px;
}
td:nth-child(2) {   /* 選手名 */
    text-align:left;
    width:auto;
}
td:nth-child(3) {   /* チーム略称 */
    width:35px;
    font-weight:500;
    font-size:15px;
}
td:nth-child(4) {   /* ゼッケン */
    width:45px;
}
td:nth-child(5) {   /* 周回数 */
    width:50px;
    font-weight:500;
    font-size:15px;
}
td:nth-child(6) {   /* タイム差 */
    text-align:right;
    width:50px;
    font-weight:500;
    font-size:15px;
}
