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

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

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

.emphasized_text {
    text-decoration-color: #821066;
}

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

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

/* button colors */
a.button_open_category {
    background-color: #821066;;
}
a.button_open_category:hover {
    background-color: #5b0b47;;
}