html body {
    font-size: 14px;
}
body .admin-nav {
    margin-top: 10px;
    font-size: 14px;
    position: fixed;
    line-height: 25px;
}
body .admin-content {
    margin-left: 220px;
}

body {
    display: flex;
    flex-direction: column;
}

body > .container {
    flex: 1;
}

body h1 {
    font-size: 26px;
    margin-bottom: 25px;
}

body label {
    font-weight: normal;
}

.red {
    color: red;
}
.green {
    color: green;
}

.component-checklist-box {
    background-color: #efefef;
    padding: 10px 20px;
    border-radius: 6px;
}
.component-checklist-box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#default_components {
    margin-top: 20px;
    columns: auto;
}

#default_components .pill {
    margin-right: 6px;
    margin-bottom: 20px;
    display:inline-block;
}
#default_components .pill span {
    padding: 8px 12px;
    background-color: #efefef;
    border-radius: 4px 0 0 4px;
}
#default_components .pill span.remove {
    padding: 8px 10px;
    background-color: #cccccc;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}
#default_components .pill span.remove:hover {
    background-color: #770000;
    color: white;
}
#default_components .pill-api span {
    background-color: #d6f4ff;
}
#default_components .pill-module span {
    background-color: #d6e0ff;
}
#default_components .pill-theme span {
    background-color: #d6fff4;
}
.buggy-version-block {
    background-color: #e00b0b;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 10px;
    float: right;
}
.buggy-version-block label {
    font-weight: bold;
    color: white;
    margin: 0;
}

.in-beta-block {
    background-color: #999988;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    padding: 4px 10px;
    position: absolute;
    margin: 3px 0 0 5px;
}
.in-beta-block label {
    font-weight: bold;
    color: white;
    margin: 0;
}

.online-checkbox {
    font-size: 18px;
}