
body{
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    background:#d0d0d0;
}

.main-header {
    background-color: #fff;
    padding: 1.1rem 0;
}

.logo-img {
    max-height: 100px;
    height: auto;
}

.header-userinfo {
    font-size: 0.95rem;
}

.bg-appblue {
    background-color: #4da3e6;
}

.nav-pill {
    background-color: #2f8cdb;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    color: #fff !important;
    transition: background-color 0.15s;
}
.nav-pill:hover,
.nav-pill:focus {
    background-color: #1e7acb;
    color: #fff !important;
}
.nav-pill.active {
    background-color: rgba(255,255,255,0.4);
    color: #fff !important;
    pointer-events: none;
}

.device-card {
    border-left: 4px solid #4da3e6;
}
.device-card .table td {
    padding: .2rem .4rem;
    font-size: .85rem;
}

.activity-dot {
    display: inline-block;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: #adb5bd;
    margin-right: .4rem;
    vertical-align: middle;
}
.activity-dot.active {
    background: #28a745;
    box-shadow: 0 0 4px rgba(40,167,69,.5);
}

.autocomplete-list {
    display: none;
    position: absolute;
    z-index: 1050;
    width: calc(100% - 1.5rem);
    max-height: 180px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: 0;
    border-radius: 0 0 .25rem .25rem;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.autocomplete-list.show { display: block; }
.autocomplete-item {
    padding: .3rem .6rem;
    cursor: pointer;
    font-size: .85rem;
}
.autocomplete-item:hover,
.autocomplete-item.highlight {
    background: #e9ecef;
}
