/* titles */
#page_content_container h1, h2, h3, h4, h5, h6 {
    background-color: #4ca22f;
}

/* links */
a:link { color: white; }
a:visited { color: #dddddd; }
a:hover { text-decoration-color: white;}

/* text decoration colors */
.emphasized_div {
    border-left: 0.3rem dotted #4ca22f;
}

.emphasized_text {
    text-decoration-color: #4ca22f;
}

/*table row colors*/
/*odd*/
.table_column p {
    background-color: #4ca22f;
}
/*even*/
.table_column p:nth-of-type(even) {
    background-color: #418a28; /* ~ -5% in w3schools color picker */
}

.table_column p:hover {
    background-color: #5cc639;
}

/* button colors */
a.button_open_category {
    background-color: #4ca22f;;
}
a.button_open_category:hover {
    background-color: #418a28;;
}