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

/*
#cc0000
#FF4D4D
*/

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

.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 #cc0000;
}

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

/* button colors */
a.button_open_category {
    color: white;
    background-color: #cc0000;
}
a.button_open_category:hover {
    background-color: #b30000;
}

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

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

/* regular html table */
table thead tr {
    background-color: #e60000;
}

table tr {
    background-color: #cc0000;
}

table tr:nth-of-type(even) {
    background-color: #b30000; /* ~ -5% in w3schools color picker */
}

table tr:hover {
    background-color: #FF4D4D;
}