body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.app {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/RedFireTechnologySubtle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;
}

.tests {
    margin: 50px auto;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 16px;
}

.test {
    cursor: pointer;
    padding: 16px 0;
}

.status-grey {
    color: #999;
}

.status-grey::before {
    content: "";
    background-color: #999;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #313131;
}

.status-green {
    color: #000;
}

.status-green::before {
    content: "";
    background-color: #0F0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #313131;
}

.status-red {
    color: #F00;
}

.status-red::before {
    content: "";
    background-color: #F00;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #313131;
}

.test .name {
    display: inline-block;
    font-weight: 700;
}
