html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 120px; 
}
hr {
    margin-bottom: 2px;
    margin-top: 4px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px; 
    line-height: 60px;
    background-color: #f5f5f5;
    text-align: center;
}
.container {
    width: auto;
    max-width: 650px;
    padding: 0 15px;
}
.align-right {
    text-align: right;
}
.align-left {
    float:left;
}
.square {
    background-color: #ffc107;
    border: 1px solid #ffc107;
    height:10px;
    width:9%;
    display: inline-block;
    margin-left:.5%;
}
.fixedHeight {
    height: 25px;
}
.disclaimer {
    font-size: 12px;
    line-height:12px;
}
.btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none;
}
#sampleRuntimeElement {
    display: none;
}
#runtimes {
    display: flex;
    flex-wrap: wrap;
}
.badge, .itemData {
    font-family: 'Courier New', Courier, monospace;
}
.runtime {
    flex: 50%;
    max-width: 50%;
}
.legend {
    text-align: right;
    font-size: 9px;
}
.badge:empty {
    display: inline-block;
}
@media (prefers-color-scheme: dark) {
    body {
        --bs-body-bg: var(--bs-gray-900);
        --bs-body-color: var(--bs-gray-200);
    }
    .footer {
        background-color: var(--bs-gray-800);
    }
    .text-muted {
        color: var(--bs-gray-500) !important; /* needs important since BS .text-muted also uses important */
    }
}
