.dashboard-container {
    background-color: #eff0f4;
    border-radius: 16px;
    padding: 2.5rem 1.5rem !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-header {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e7e1db;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;    
}

.stats {
  background-color: #fff;
  border: 1px solid #e7e1db;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
}

.stats-cards {
  display: flex;
  gap: .5rem;
}

.stats-card-sm {
  background-color: #fff;
  border: 1px solid #e7e1db;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  width: 20% !important;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
    min-height: 60px;
    padding-bottom: 1rem;
}

.stats-card-title {
    font-size: .8rem;
    color: #e68b53;
    font-weight: 700;
}

.stats-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.stats-card-footer {
  display: flex;
  justify-content: end;
}

.stats-comparison {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.comparison-tagline {
  font-size: .6rem;
}

.stats-result {
    font-size: 1.8rem;
    line-height: normal;
}

.stats-comparison-number {
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: 5px;
  margin-top: 10px;
}

.success {
  background-color: rgba(81,210,140,.1);
  color: #51d28c;
}

.success::before {
  content: "\e098"; 
  font-family: FontAwesome;
  margin-right: 5px;
}

.danger {
  background-color: rgba(243,78,78,.1);
  color: #f34e4e;
}

.danger::before {
  content: "\e097"; 
  font-family: FontAwesome;
  margin-right: 5px;
}

.stats-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.percentages {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.status {
  width: calc((100%/2) - .5rem);
}

.stats-cards-horizontal {
  background-color: #fff;
  border: 1px solid #e7e1db;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
   width: 100%;
   gap: 0.3rem;
}

.stats-card-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e7e1db;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  width: 100%;
}

.stats-card-icon {
    width: 45px;
    height: 45px;
    background-color: #e68b53;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.stats-card-horizontal-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats-card-horizontal-title {
  display: flex;
}

.stats-card-horizontal-body {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: calc(100% - 45px);
    margin-left: 1rem;
}

.stats-horizontal-result {
    font-size: 1.8rem;
    line-height: 1rem;
}

.font-small-cinzaescuro{
    font-weight: 500;
    font-size: 11px;
    color:#888888
}

.btn-clean{
    padding-inline: 10px;
    border: none;
    background: none;
    color:#727272;
}