.siteapps .sidebar .app-icon{
    height: 26px;
}


.fa-facebook{
    color: #3b5998;
}

.fa-instagram{
    color: #e250c3;
}

.social-feed-configuration-button{
    height: 75px;
}

.kpi-graph{
    height: 200px;
}

.kpi-summary-graph .kpi-graph{
    height: 250px;
}

.kpi-range{
    width: 125px;
}

.kpi-graph-result > div{
    min-width: 90px;
}

.wod-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--bs-border-color);
  padding: 0.95rem 1.15rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  min-height: 60px;
}
.wod-step:last-child {
  border-bottom: 0;
}

.wod-step.is-active {
  background: #fffaf0;
  border-left-color: var(--wod-primary);
}
.wod-step__num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: #eef2f6;
  color: #7a8a99;
  border: 1px solid #e0e6ec;
}
.wod-step.is-done .wod-step__num {
  background: #1f9d6b;
  border-color: #1f9d6b;
  color: #fff;
}
.wod-step.is-progress .wod-step__num {
  background: var(--wod-primary);
  border-color: var(--wod-primary);
  color: var(--wod-secondary);
}
.wod-step__body {
  min-width: 0;
  flex: 1 1 auto;
}
.wod-step__title {
  font-weight: 500;
  color: var(--wod-secondary);
  font-size: 0.96rem;
  line-height: 1.25;
}
.wod-step__desc {
  font-size: 0.8rem;
  color: #7a8a99;
  margin-top: 0.15rem;
}

.wod-status {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  white-space: nowrap;
  flex: 0 0 auto;
  align-self: center;
}
.wod-status--done {
  background: #e7f6ef;
  color: #16794f;
}
.wod-status--progress {
  background: #fef3d7;
  color: #8a6104;
}
.wod-status--todo {
  background: #fff;
  color: #8a99a8;
  border: 1px solid #dde3e9;
}