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 {
    width:100%;
    margin-top:150px;
    margin-left:auto;
    margin-right:auto;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    background:transparent;
}

h1 { 
    width:1600px;
    height:60px;
    margin-bottom:40px;
    margin-left:auto;
    margin-right:auto;
    font-size:28px;
    background-color:rgba(0,0,0,0.7);
    line-height:100%;
    display:flex;
    margin-bottom:10px;
    justify-content: center;
    align-items: center;
}
.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; 
}

/* リザルトのtable */
table { 
    border-spacing:0px 8px;
    width:100%; 
    max-width:1600px; 
    margin:0 auto; 
}
td { 
    padding:2px 10px; 
    font-size:20px;
    font-weight:600;
    height:50px;
}
td { 
    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:50px;
}
td:nth-child(2) {   /* 選手名 */
    text-align:left;
    width:calc(calc(1600px - 393px)*0.55);
}
td:nth-child(3) {   /* ゼッケン */
    width:65px;
}
td:nth-child(4) {   /* チーム名 */
    text-align:left;
    width:calc(calc(1600px - 396px )*0.45);
}
td:nth-child(5) {   /* 国 */
    width:75px;
    font-weight:500;
    font-size:18px;
}
td:nth-child(6) {   /* 時間 */
    text-align:right;
    width:75px;
    font-weight:500;
    font-size:18px;
}
td:nth-child(7) {   /* タイム差 */
    text-align:right;
    width:70px;
    font-weight:500;
    font-size:18px;
}