/* Modifies Bootstrap, regarding panels */
.panel {
background-color:#d7e4f4;}


/* Validation icon fix */
select + span.glyphicon.glyphicon-ok.form-control-feedback {
    right: 5px;
}


/* Buttons ordinarily can't be round... these define it */
.btn-round {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 2px 2px;
    border: 0 none;
    font-weight: 700;
}

.btn-round-xs {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    padding: 2px 2px;
    border: 0 none;
    font-weight: 700;
}


/* Used with the dropdown menus on index.htm, to disable a particular menu item.
https://stackoverflow.com/questions/43183548/ng-disabled-on-anchor-inside-li/43183612
*/
.disabled {
    pointer-events:none; //This makes it not clickable
    opacity:0.6;         //This grays it out to look disabled
}


.detail-view-item {
    margin-top: 20px;
    margin-bottom: 20px;
}