/* Hide the first title of each section from the TOC to avoid redundancy.
   See https://github.com/mkdocs/mkdocs/issues/318
 */
li.toctree-l2:first-child, li.toctree-l3:first-child {
    display: none;
}

/* Hide the Home section from the TOC */
li.toctree-l1:first-child {
    display: none;
}

/* Hide the menu to view different versions on ReadTheDocs */
.rst-versions.rst-badge {
    display:none !important;
}

/* Add more space between list items, since the default theme results in very cramped lists */
.rst-content .section ul li {
    margin-top:8px;
}
.rst-content .section ul li:first-child {
    margin-top:0px;
}

.color-dot {
    border-radius: 99px;
    display:inline-block;
    width:12px;
    height:12px;
    margin-left:7px;
    margin-right:4px;
}

.color-dot, .critical {
    background-color:#e74c3c;
}

.color-dot, .major {
    background-color:#e67e22;
}

.color-dot, .minor {
    background-color:#f1c40f;
}

.color-dot, .none {
    background-color:#2ecc71;
}