/* Tag List */
section:has(option:checked) table tr{display:none;}
section:has(option[value~="all"]:checked) table tr{display:table-row;}
section:has(option[value~="art"]:checked) table tr[class~="tag-art"]{display:table-row;}
section:has(option[value~="webdev"]:checked) table tr[class~="tag-webdev"]{display:table-row;}
section:has(option[value~="personal"]:checked) table tr[class~="tag-personal"]{display:table-row;}
section:has(option[value~="misc"]:checked) table tr[class~="tag-misc"]{display:table-row;}

/* Journal Entries */
table.entry-list {
    width:100%;
}
table.entry-list tr {
    background-color: var(--bg-color1);
    margin-bottom:0.3em;
}
table.entry-list tr td:first-child{
    padding: 0.3em 0.5em;
    text-align:left;
}
table.entry-list tr td:last-child{
    background-color: var(--accent-color2);
    font-weight: bold;
    color:var(--bg-color1);
    padding: 0.3em 0.5em;
    width:4.5em;
    vertical-align: top;
    text-align:right;
}
