.bbr-stat {
  padding: 1.25rem 1.5rem;
}
.bbr-stat__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.bbr-stat__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bbr-stat__value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #363636;
  margin: 0;
}
.bbr-stat__label {
  font-size: 0.85rem;
  color: #7a7a7a;
  margin: 0;
}
.bbr-stat__trend {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
.bbr-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  font-size: 1.5rem;
  flex-shrink: 0;
  background-color: rgba(54, 54, 54, 0.1);
  color: #363636;
}
.bbr-stat__icon.is-primary {
  background-color: rgba(0, 209, 178, 0.15);
  color: #00d1b2;
}
.bbr-stat__icon.is-link {
  background-color: rgba(72, 95, 199, 0.15);
  color: #485fc7;
}
.bbr-stat__icon.is-info {
  background-color: rgba(62, 142, 208, 0.15);
  color: #3e8ed0;
}
.bbr-stat__icon.is-success {
  background-color: rgba(72, 199, 116, 0.15);
  color: #48c774;
}
.bbr-stat__icon.is-warning {
  background-color: rgba(255, 224, 138, 0.3);
  color: #b5850b;
}
.bbr-stat__icon.is-danger {
  background-color: rgba(241, 70, 104, 0.15);
  color: #f14668;
}
