* {
    box-sizing: border-box;
}

.status {
    display: inline-block;
    vertical-align: bottom;
    margin: 2px;
    width: 20px;
    height: 20px;
    background: gray;
    transition: background-color 300ms;
}

.status.loaded {
    background: green;
}

.status.failed {
    border: solid red 2px;
}

.description {
    color: gray;
}

#debug {
    margin-top: 100px;
    opacity: 0.3;
}