.birdie,
.eagle,
.bogey,
.double-bogey,
.triple-bogey,
.other {
    flex: 0 0 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: transparent;
}

.birdie {
    border: 1px solid var(--green);
    border-radius: 50px;
    color: var(--green);
}

.eagle {
    border: 1px double var(--green);
    border-radius: 50px;
    color: var(--green);
}

.bogey {
    border: 1px solid var(--red);
    color: var(--red);
}

.double-bogey {
    border: 1.25px double var(--red);
    color: var(--red);
}

.triple-bogey {
    border: 1px dashed var(--red);
    color: var(--red);
}

.other {
    border: 1px dashed var(--red);
    color: var(--red);
}

.statshdr {
    font-weight: bold;
    text-align: center;
}

.stats {
    text-align: center;
}

.golfer {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.golfer a {
    color: var(--navy);
    text-decoration: none;
    vertical-align: middle;
}

.group1 {
    font-size: .75rem;
    background-color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: 6px;
    color: var(--white);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.group2 {
    font-size: .75rem;
    background-color: var(--tan);
    border: 2px solid var(--tan);
    border-radius: 6px;
    color: var(--black);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.group3 {
    font-size: .75rem;
    background-color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 6px;
    color: var(--white);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.group4 {
    font-size: .75rem;
    background-color: var(--green);
    border: 2px solid var(--green);
    border-radius: 6px;
    color: var(--white);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.group5 {
    font-size: .75rem;
    background-color: var(--sky);
    border: 2px solid var(--sky);
    border-radius: 6px;
    color: var(--black);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.amateur {
    font-size: .75rem;
    background-color: var(--red);
    border: 2px solid var(--red);
    border-radius: 6px;
    color: var(--white);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.amateur a:link {
    text-decoration: none;
    color: var(--white);
}

.amateur a:visited {
    text-decoration: none;
    color: var(--white);
}

.pro {
    font-size: .75rem;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 6px;
    color: var(--black);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.pro a:link {
    text-decoration: none;
    color: var(--white);
}

.pro a:visited {
    text-decoration: none;
    color: var(--white);
}

.owgr {
    font-size: .75rem;
    background-color: var(--black);
    border: 2px solid var(--black);
    border-radius: 6px;
    color: var(--white);
    margin: 0 auto;
    padding: 1.5px 3px;
    width: 75%;
    max-width: 400px;
}

.button-red,
.button-gold,
.button-green {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: .75rem;
    height: 24px;
    width: 100px;
    max-width: 100px;
    padding: 1.5px 3px;
    border-radius: 6px;
    margin: 0 auto;
    text-align: center;
}

.button-red {
    background-color: var(--red);
    border: 2px solid var(--red);
    color: var(--white);
}

.button-gold {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--black);
}

.button-green {
    background-color: var(--green);
    border: 2px solid var(--green);
    color: var(--white);
}

.button-red a,
.button-gold a,
.button-green a {
    text-decoration: none;
    color: inherit;
}

.scoreline {
    background-color: var(--navy);
    color: var(--white);
}

.nameabbr {
    display: none;
}

/*This is for the posts page*/
/* display: flex means items before or after are new rows. Each item inside is stacked in a row */
.playercard {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg1);
    color: var(--fg1);
    padding: 20px;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--bg1shadow);
    width: 95%;
    max-width: 1080px;
}

.playercard a {
    text-decoration: none;
    text-align: center;
    color: var(--fg1);
}
/*This means all of these objects in column 2 are going to expand out to all the usable space*/
.info {
    flex: 1;
}
/*This means everything before and after is stacked vertically, but only to the right of the photo*/
.header {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.header h2 {
    margin: 0;
    color: var(--fg1);
}

.golferdetails {
    color: var(--fg1);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.photo img {
    width: 110px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    background: var(--white);
}


