html, body {
    width: 100%;
    padding: 0;
    background-color: #6fb2ef;
    font-size: 14px;
    line-height: 20px;
    margin: auto;
}

.content {
    display:flex;
    height:400px;
    width:700px;
    text-align: center;
    margin: 100px auto 0;
    border: 1px solid red;
}

.add_players {
    height: 100%;
    width: 50%;
    background-color: #d3bbb4;
    text-align: center;
    border:1px solid black;
}

.add_scores {
    height: 100%;
    width: 50%;
    background-color: #91d360;
    text-align: center;
    border:1px solid black;
}

.score_container {
    display:flex;
}

table {
    font-size:13px;
    border-collapse: collapse;
    margin-left:10px;
    background-color: white;
}
table, th, td {
    border: 1px solid black;
    text-align:center;
}

td.fc {
    border: 0;
    border-right: 1px solid black;
}


