* {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.2em;
    font-weight: 400;
    font-size: 1rem;
}

table { padding-bottom: 2em; }
caption { font-weight: 700; text-align: left; color: #0051a2; }
thead { color: white; font-weight: 700; background-color: #0051a2; }
td, th { text-align: center; padding: 0.5em;}
td:first-child { text-align: left; }
tbody tr:nth-child(even) { background-color: #89bff8; }
tbody tr:nth-child(odd) { background-color: #e3f1ff; }

.monospace {
    font-family: 'Courier New', Courier, monospace;
}

.invert {
    background-color: black;
    color: white;
}
span.invert {
    border-radius: 2px;
}

.info {
    font-style: italic;
    color: lightgreen;
    font-size: 0.8em;
}

.error {
    font-weight: 700;
    color: red;
}

.no-show {
    display: none;
}

.bold {
    font-weight: 700
}

form div {
    position: relative;
}

#form-domain-back {
    color:darkgray;
}
#form-domain-front { 
    background: none;
    z-index: 2;
    position: absolute;
}
#hint-container {
    margin-left: 1rem;
}
#hint-items {
    display: inline-block;
    background-color: white;
    border: 1px solid lightgray;
}
#hint-items div {
    line-height: 1em;
    padding: 0.5em;
    border-bottom: 1px solid black;
    cursor: pointer;
}
#hint-items #hint-items-active {
    background-color: blue;
}
#hint-items div:hover {
    background-color: lightblue ;
}
#hint-items div:last-child {
    border-bottom: 0;
}