html {
    position: relative;
    min-height: 100%;
    background-color: #121212; /* Dark Background */
    color: #ffffff; /* Light Text */
}
body {
    margin-bottom: 120px;
    background-color: #121212; /* Dark Background */
    color: #ffffff; /* Light Text */
}
hr {
    margin-bottom: 2px;
    margin-top: 4px;
    border-color: #ffffff; /* Light Border */
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    line-height: 60px;
    background-color: #1e1e1e; /* Slightly Lighter Dark */
    text-align: center;
    color: #e0e0e0; /* Light Text */
}
.container {
    width: auto;
    max-width: 850px;
    padding: 0 15px;
}
.align-right {
    text-align: right;
}
.align-left {
    float: left;
}
.fixedHeight {
    height: 25px;
}
.disclaimer {
    font-size: 12px;
    line-height: 12px;
    color: #bbbbbb; /* Slightly Darker Text */
}
.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;
    color: #e0e0e0; /* Light Text */
}
.runtime {
    flex: 50%;
    max-width: 50%;
}
.legend {
    text-align: right;
    font-size: 9px;
    color: #bbbbbb; /* Slightly Darker Text */
}
.badge:empty {
    display: inline-block;
}
.square {
    background-color: #0d6efd;
    border: 1px solid #808080;
    height: 10px;
    width: 9%;
    display: inline-block;
    margin-left: .5%;
    transform-origin: left center; /* Added to scale from the left */
    animation-name: growSquare;
    animation-timing-function: linear;
}

@keyframes growSquare {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}