/**************/
/* main style */
/**************/

body {
    background-color: #21262C;
    color: #F8F8F2;
    font-family: roboto, 'trebuchet ms', tahoma, sans-serif;
    font-size: 1em;
    position: relative
}

a:visited { color: #F8F8F2 }
a:link    { color: #F8F8F2 }


/* main flexbox */

#players {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    gap: 0.5em;
/* 
    align-content: center;
    height: 100vh;
 */
}

#players a:visited { color: #21262C }
#players a:link    { color: #21262C }

.player {
    background-color: #F8F8F2;
    color: #21262C;

    flex: 0 0 22em;
    padding: 0.5em;
    width: 22em;
    height: 11.3em;
}

.info .name {
    font-weight: bold;
    font-size: 1.2em;
}

.info .nandor_dates {
    font-size: small;
}


/*****************/
/* stats flexbox */
/*****************/

.stats {
    font-family: "Source Code Pro", monospace;
    padding-bottom: 0.5em;
}

.stats_head, .stats_row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.stats_col_head, .stats_col {
    font-size: 0.65em;
    text-align: right;

	flex: 0 0 2em;
}

.stats_col_head {
    font-weight: bold;
}

.stats_col_l {
	flex-basis: 3.5em;
}


/*****************/
/* sched flexbox */
/*****************/

.sched {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5em;
}

.sched_col {
    font-size: 0.55em;
    text-align: center;

	flex: 0 0 4em;
}

.sched_col.won {
    background-color: #50FA7B;
}

.sched_col.lost {
    background-color: #FF5555;
}


/***********/
/* images */
/***********/

.hockeydb img,.gamesheetstats img, .eliteprospects img {
    height: 0.5em;
}

.type_logo {
    max-height: 1em;
    max-width: 1.5em;
    padding-right: 0.25em;
    vertical-align: middle;
}

.team_logo {
    height: 1em;
    width: 1em;
    vertical-align: bottom;
}

.sched_logo {
    height: 4em;
    width: 4em;
}

.player_img img {
    padding-top: 0.5em;
    padding-bottom: 2em;
    padding-right: 1em;
    height: 7em;
    /* width: 7em; */
    float: left;
}
