html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}

.metric-card {
  width: 300px;
  position: relative;
  min-height: 130px;
}
.metric-card .card-body {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric-subtitle div {
  line-height: 1.1;
}
.badge-soft-success {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}
.badge-soft-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-absolute {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
}
.verified-badge i {
  font-size: 1rem;
  color: #0a74e3;
}

canvas {
  max-width: 100%;
  box-sizing: border-box;
}

canvas[data-type='doughnut'] {
  max-height: 300px;
  width: 100% !important;
  object-fit: contain;
}
