﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

img.oslogo {
    height: 1.5em;
}

#signalr-status {
    position: fixed;
    top: 5px;
    right: 5px;

}
#signalr-status .title {
    margin-top: 0;
}

.spin {
    -webkit-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
    -webkit-transform-origin: 50% 58%;
    transform-origin:50% 58%;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

table.device td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

td.maxwidth-400 {
    max-width: 400px;
}

td.maxwidth-600 {
    max-width: 600px;
}

td.width-100 {
    width: 100px;
}

/* Prevent sortable indicator from wrapping by itself, causing headers to look misaligned */
table[data-sortable] th {
    position: relative;
}
table[data-sortable] th:after {
    position: absolute;
    margin-left: 5px;
}

ul.no-bullet {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

div.dashboard-widget.well {
    padding: 19px 0;
}
div.dashboard-widget p.lead {
    font-size: 24px;
    font-weight: 600;
}
dl.dashboard-widget.dl-horizontal dt {
    width: 200px;
}
dl.dashboard-widget.dl-horizontal dd {
    margin-left: 220px;
}

/* container for dca-reported errors */
div.small-box {
    max-width: 200px;
    padding: 5px;
    font-size: 75%;
}