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

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

.table_column a:link { color: #1a1a1a; }
.table_column a:visited { color: #262626; }
.table_column a:hover { text-decoration-color: #1a1a1a;}


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

.emphasized_text {
    text-decoration-color: #ffd800;
    background-color: rgba(255, 216, 0, 0.2);
}

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

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