/*　基本設定　*/
body { 
    font-family:"Arial", sans-serif;  
    width:100%; 
    padding:0px;
    margin:0;
    display:flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: center!important;
    background-color:#ddd;
}
.controls {
    position: relative;
    width:100%;
    display:block;
    padding:30px;
    background:#d11122;
}
.controls h4 {
    position:absolute;
    display:inline-block;
    border:1px solid #fff;
    padding:2px 5px;
    font-weight:500;
    font-size:12px;
    z-index:2;
    top:0;
    left:10px;
    color:#fff;
}
.controls h2 {/*　タイトル　*/
    width:auto;
    display:inline-block;
    font-size:26px; 
    font-weight:bold; 
    margin-bottom:15px; 
    color:#fff;
}


form { 
    background: #fff; 
    padding: 30px; 
    box-sizing: border-box;
    border-radius: 8px; 
    width:100%;
    max-width: 1200px; 
    margin: auto; 
    margin-top:30px;
}
input[type="text"], 
input[type="file"], 
select { 
    width: 100%; 
    padding:8px 12px; 
    margin:3px; 
    font-size:22px; 
    /*font-weight:600;*/
}
label { 
    font-size:22px;
    display: block; 
    margin-bottom: 40px; 
    font-weight:600; 
}
label p {
    margin-bottom:5px;
}
form #raceTitle {    /*　レースのタイトル　*/
    /*width:1100px;*/
    width:calc( 100% - 40px );
}
form input#csvFile {    /*　ファイルが選択されていません　*/
    padding: 10px 16px; 
    font-size: 20px;
    font-weight: 600; 
}

form #teamFilterColumn {    /*　チーム絞り込み列　*/
    /*width:1130px;*/
    width:calc( 100% - 10px );
}
form button { 
    padding: 10px 16px; 
    font-size: 20px; 
    margin-top: 10px; 
    border-radius: 4px;
    border:1px solid #ccc;
}
form button[type="submit"] {
    width:400px;
    display:block;
    margin-left:auto;
    margin-right:auto;
    background:#d11122;
    color:#fff;
    font-size:25px;
    font-weight: 600; 
    border:none;
}
#message { 
    width:100%;
    max-width: 1200px; 
    padding:30px;
    margin-top: 40px; 
    font-size: 24px; 
    line-height:150%;
    font-weight: 600; 
    box-sizing: border-box;
    margin-left:auto;
    margin-right:auto;
    color:red;
}


