﻿
.status-badge-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.status-badge {
  padding: 8px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  display: inline-block;
  /*  padding: 0.35em 0.65em;
  font-size: .75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;*/
  text-align: center;
  white-space: nowrap;
  /*  vertical-align: baseline;
  border-radius: 0.25rem;*/
}

  .status-badge.success {
    background: #D1EFE3;
    color: #008D52;
  }

  .status-badge.secondary {
    background: #E0E0E0;
    color: #545454;
  }

  .status-badge.danger {
    background: #FDE4E4;
    color: #CB0101;
  }

  .status-badge.warning {
    background: #FFF5D2;
    color: #966300;
  }

  .status-badge.info {
    background: #D1DFEF;
    color: #00498D;
  }

  .status-badge.orange {
    background: #FFE3CF;
    color: #A54F00;
  }
