body {
    margin-left: 0px;
    margin-right: 0px;
}

input {
    font-size: medium;
}

#MAIN_TABLE {
    border-collapse: collapse;
    min-width: 100vw;
}

.TITLE_ROW {
    width: 1000%;
}

.TITLE {
    position: sticky;
    left: 50vw;
    display: inline-block;
    transform: translateX(-50%);
}

.HEADER_ROW {
    position: sticky;
    top: 0px;
    background-color: lightgrey;
    z-index: 10;
}

.ROUND_HEADER {
    background-color: lightgrey;
    border-width: 0px;
}

.SHADOW_CELL {
    width: 100vw;
}

.PLAYER_ROW {
    background-color: lightgrey;
}

.NAME_CELL {
    position: sticky;
    left: 0;
    text-align: right;
    width: 20vmin;
}

.PLAYER_NAME {
    background-color: lightgrey;
    width: 80%;
    height: 10vmin;
    border-width: 0px;
    font-weight: bold;
}

.SCORE_CELL {
    position: sticky;
    right: 0;
    text-align: left;
}

.LABEL_CELL {
    position: sticky;
    left: 0;
    text-align: left;
    background-color: lightgrey;
    padding-left: 2vmin;
    padding-right: 2vmin;
    white-space: nowrap;
}

.ROUND_HEADER, .BID, .TRICKS_WON, .BONUS_POINTS {
    width: 20vmin;
    height: 10vmin;
    text-align: center;
}

.ROUND_POINTS, .RUNNING_POINTS {
    width: 100%;
    height: 10vmin;
    text-align: center;
    display: inline-block;
}

#STANDINGS_TABLE {
    border-collapse: collapse;
    width: 100vw;
}

.STANDINGS_CELL {
    text-align: center;
    padding: 3vmin;
}

#MENU_TABLE {
    border-collapse: collapse;
    width: 100vw;
}

.MENU_CELL {
    text-align: center;
    padding: 3vmin;
}

.OPTION_BUTTON {
    bottom: 0px;
    border-radius: 10vmin;
    width: 60vmin;
    height: 20vmin;
    white-space: normal;
}

.OPTION_CHECKBOX {
    height: 10vmin;
    width: 15vmin;
    vertical-align: middle;
    border-width: 80px;
}

#BOTTOM {
    height: 20vmin;
}

#BOTTOM_BAR {
    bottom: 1vmin;
    right: 1vmin;
    position : fixed;
    vertical-align: bottom;
    padding-left: 10vmin;
}

#ADD_PLAYER_BUTTON, #ADD_ROUND_BUTTON, #STANDINGS_BUTTON, #SCORES_BUTTON, #MENU_BUTTON {
    bottom: 0px;
    border-radius: 50%;
    width: 20vmin;
    height: 20vmin;
    white-space: normal;
    background-position: center;
    background-repeat: no-repeat;
}

#ADD_PLAYER_BUTTON {
    background-image: url(player.png);
    background-size: 50%;
}

#ADD_ROUND_BUTTON {
    background-image: url(round.png);
    background-size: 50%;
}

#STANDINGS_BUTTON {
    background-image: url(standings.png);
    background-size: 50%;
}

#SCORES_BUTTON {
    background-image: url(scores.png);
    background-size: 50%;
}

#MENU_BUTTON {
    background-image: url(menu.png);
    background-size: 50%;
}

.ADD_PLAYER_FORM_POPUP, .ADD_ROUND_FORM_POPUP {
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    position : fixed;
    text-align: center;
}

.POPUP_BUTTON {
    margin-top: 5vmin;
    margin-bottom: 5vmin;
    border-radius: 10vmin;
    width: 30vmin;
    height: 20vmin;
    white-space: normal;
}

.UPDOWN_BUTTON {
    border-radius: 10vmin;
    width: 20vmin;
    height: 20vmin;
    white-space: normal;
    font-size:larger;
}

.NEW_PLAYER_NAME, .NEW_ROUND_CARDS {
    text-align: center;
}