@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto+Condensed:wght@300;400;700&display=swap');

html {
    font-family: 'Roboto Condensed', sans-serif;
}

header {
    font-size: 11px;
    color: #000;
    text-align: center;
    width: 100%;
}

header span.page-number {
    color: #fff;
    background-color: #000;
    border-radius: 3px;
    border: 1px solid #000;
    padding: 1px 4px;
    margin: 0 5px;
    font-weight: bold;
}

.container {
    width: 1080px;
    margin: 0 auto;
    padding: 0px 30px 10px;
    background: white;
    /* border: 1px solid red; */
}

h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

th,
td,
span.headerLegend {
    font-size: 14px;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table.header {
    margin: 15px 0 15px;
}

span.headerTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 5px 0;
    padding: 1px 5px;
    text-transform: uppercase;
    background: black;
    color: white;
    letter-spacing: 2px;
}

span.headerTitle::before {
    content: "|";
    color: #ff7928;
    font-size: 2.5rem;
    vertical-align: middle;
    padding-bottom: 20px;
}

span.headerLegend a {
    color: blue;
}

.idollar,
.iplus,
.imust,
.isleeper,
.irookie {
    color: white;
    font-weight: bold;
    margin-right: 4px;
    padding: 0 2.5px;
}

.idollar {
    background: green;
    font-weight: normal;
}

.iplus {
    background: red;
}

.imust {
    background: blue;
}

.isleeper {
    background: orange;
}

.irookie {
    background: purple;
}

/* rankings table */
.dataTable td div {
    height: 14px;
}

.dataTable tr:nth-child(odd) {
    background: #D3D3D3;
}

.dataTable tr:nth-child(1) {
    background: #FFF;
}

.dataTable tr:not(:nth-child(1)) td div,
.dataTable tr:not(:nth-child(2)) td div {
    display: flex;
    align-items: center;
}

.skatersTable tr td:first-child div {
    justify-content: flex-end;
    width: 40px;
}

.goaliesTable tr td:first-child {
    text-align: right;
    padding-right: 40px;
}

/* all columns after player names */
.skatersTable tr td:nth-child(n+3),
.skatersTable tr th:nth-child(n+3) {
    width: 50px;
}
.goaliesTable tr td:nth-child(n+3),
.goaliesTable tr th:nth-child(n+3) {
    width: 54px;
}

/* fantasy tags column */
.skatersTable tr td:nth-child(17),
.goaliesTable tr td:nth-child(15) {
    width: 70px;
}

/* vertical borders for table sections */
.skatersTable tr td:nth-child(6) {
    border-left: 1px solid #999;
}
.skatersTable tr td:nth-child(12) {
    border-right: 1px solid #999;
}
.goaliesTable tr td:nth-child(5) {
    border-left: 1px solid #999;
}
.goaliesTable tr td:nth-child(9) {
    border-right: 1px solid #999;
}

a.playerName {
    text-decoration: none;
    color: black;
}

a.playerName:hover {
    color: blue;
}

a.playerName:active {
    color: black;
}

th {
    text-align: left;
    border-bottom: 3px;
}

th.seasonHeader {
    text-align: center;
}

th.actual {
    background: black;
    color: white;
}

th.forecast,
td.forecastedPoints {
    background: #FFD580;
}

td {
    padding: 5.5px 1px;
}

.leftPad,
td.forecastedPoints {
    padding-left: 5px;
}