#yearpicker{
    display: flex;
    flex-direction: row;
    background-color: rgb(196,194,192);
    color: white;
    font-size: 0.85em;
}

#yearpicker div{
    border-left:1px solid gray;
}

#yearpicker{
    display: flex;
    justify-content: space-between;
}

#yearpicker div{
    cursor: pointer;
    flex: 1;
    text-align: center;
    padding: 5px;
}


#yearpicker .highlighted{
    background-color: gray;
}

#yearpicker .active{
    background-color: rgb(231, 204, 104);
}

#yearpicker div:hover{
    background-color: gray;
    font-weight: bold;
}