
span.successful, span.active {
    border-radius: 9px;
    padding: 1px 5px;
    background-color: green;
    color: white;
}


span.inactive {
    border-radius: 9px;
    padding: 1px 5px;
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

a.danger, button.danger, input[type=submit].danger {
    -webkit-box-align: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.2rem;
    height: 3.2rem;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 0;
    outline: none;
    padding: 0px 1.2rem;
    transition: all 0.2s ease 0s;
    user-select: none;
    white-space: nowrap;
    color: rgb(255, 255, 255);
    background-color: rgb(239, 53, 38);
    border: 1px solid transparent;
    box-shadow: transparent 0px 0px 0px 1px inset;
    background-image: none;
    width: auto;
}