html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle
}

/* dot colors per status */
.status-pending {
    background: #f0ad4e;
}
/* amber */
.status-assigned {
    background: #0d6efd;
}
/* blue */
.status-inprogress {
    background: #6f42c1;
}
/* purple */
.status-resolved {
    background: #198754;
}
/* green */
.status-closed {
    background: #6c757d;
}
/* gray */

/* Light gray highlight for selected conversation */
.list-group-item.active {
    background-color: #f0f0f0 !important;
    border-color: #dcdcdc !important;
    color: #333 !important;
}

    .list-group-item.active .badge {
        color: #fff;
    }

