/* `#` (id) is for one element, `.` (class) is for multiple elements */
/* elements can have one id, but multiple classes */

/* originates from v1.0 */
/* a::before{
  content:"<< "
}
a::after {
  content:" >>"
} */

/* originates from v2.0-v4.0 */
a {
    color: #AAAAFF;
    /* text-decoration-line: none; */
    cursor: zoom-in;
} 

/* for clock */
#date {
    font-size: 125%;
}
#time {
    font-size: 125%;
}
#seconds {
      font-size: 75%;
      color: lightgray;
}
.searchcontainer {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.search {
    font-size: 15px;
    width: 100%;
    height: 100%;
    text-align: left;
    background-color: rgb(39, 39, 39);
    color: white;
    border: thin;
} /* thank you floot (flootah.dev) */

/* good for figuring out what is going on with the tables */
/*
td{
  border:1px dashed red !important;
}
tr {
  border: 1px dashed red !important;
}
*/

/* originates from v5.0 */
body {
  background-color: #333333;
  color: #dddddd;
  font-family: Arial, Helvetica, sans-serif;
  /* width:1024px; */
  /* background-image: url("./") */
  height:auto;
  padding-bottom: 20vh; /* ensure the bottom of the page is never on the bottom of the screen */
}

/* originates from v6.0 */
.center {
  text-align: center;
}

ul {
  list-style-type: none;
}
/* ul li::before {
  content: "- "
} */

/* originates from v7.0 */
.code {
  font-family: 'Courier New', Courier, monospace;
  /* background-color: #555555; */
}

td {
  border: 1px solid gray;
  padding: 5px;
}

.twocolumns {
  width: 70%;
  table-layout: fixed;
  word-wrap: break-word;
  border-collapse: collapse;
}

td.twcl {
  width: 25%;
  vertical-align: top;
}

td.twcl:nth-child(2) {
  width: 75%;
  vertical-align: top;
}

.threecolumns {
  width: 70%;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  border-collapse: collapse;
}

td.thcl {
  width: 20%;
  vertical-align: top;
}

td.thcl:nth-child(2) {
  width: 60%;
  vertical-align: top;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.stickyanchor {
  position: relative;
}

.stickylist {
  position: sticky;
  top: 5px;
  overflow-y: auto;
  max-height: 100vh;
}

span.linklist a {
  margin-left: 8px;
  line-height: 16px;
}

span.linklist img {
  margin-right: 5px;
}

td img {
  vertical-align: middle;
  margin-bottom: 3px;
}

h2 img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-bottom: 10px;
}

.rel {
  position: relative;
}

.icon {
  width: 16px;
  height: 16px;
}

.icon.overlay {
  position: absolute;
  left: 14px;
  top: 0px;
  z-index: 1;
}

.icon.ontop {
  position: absolute;
  left: 8px;
  top: 0px;
  z-index: 1;
}

.icon.inline {
  vertical-align: middle;
  margin-bottom: 5px;
}

.large {
  width: 32px;
  height: 32px;
}

#d2r {
  background-color: #220000
}

a.disabled {
  color: inherit;
  text-decoration: none;
  cursor: inherit;
}

.backtotop {
  display: block;
  position: fixed;
  bottom: 5px;
  left: 75%;
  background-color: #555599;
  color: #dddddd;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
}

table.vert {
  border-collapse: collapse;
  margin-bottom: 5px;
}

table.vert tr td:nth-child(odd) {
  font-weight: bold;
  border-right: none;
}

table.vert tr td:nth-child(even) {
  border-left: none;
}

.flexcenter {
  display: flex;
  justify-content: center;
}

body#d2r td {
  border-color: #aaaaaa;
  line-height: 1.1lh;
}

table.locale {
  border-collapse: collapse;
  margin-bottom: 5px;
}

table.locale th { /* unused? */
  border: 1px solid gray;
  padding: 5px;
}

table.locale td  {
  border-style: none;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

.ib {
  font-style: italic;
  font-weight: bold;
}

table.skills {
  border-collapse: collapse;
  margin-bottom: 5px;
}

table.skills tr:nth-child(1) td {
  border-style: none;
}