.section-title {
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 4px;
  margin-bottom: 1rem;
}
.card {
  margin-bottom: 1rem;
}
.status-icon {
  width: 24px;
  text-align: center;
}
.badge-status {
  font-size: 0.8rem;
}
input::placeholder {
  color: rgba(0, 0, 0, 0.4) !important; 
}
.nav-link {
	font-size: 18px;
    font-weight: 500;
    padding: 10px 24px !important;
    color: #999;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "";
  }

.breadcrumb-item + .breadcrumb-item::before {
	content: "\F135"; 
	font-family: "bootstrap-icons";
	display: inline-block;
	margin: 0 0.5rem;
	vertical-align: middle;
	font-weight: 600;
	color: #6c757d; 
}
.text-light {
	color:#ccc !important;
}


<style>
    .stats-section {
      background: #f8f9fa;
      color: #212529;
      padding: 3.5rem 1rem;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .stat-card {
      background: #ffffff;
      border: 1px solid #e9ecef;
      padding: 1.4rem;
      border-radius: 12px;
      transition: transform .25s ease, box-shadow .25s ease;
      min-height: 120px;
      display: flex;
      align-items: center;
      gap: 1rem;
      height: 100%;
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .stat-icon {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      background: #f1f3f5;
      border: 1px solid #dee2e6;
    }

    .stat-value {
      font-weight: 700;
      font-size: 1.6rem;
      letter-spacing: -0.6px;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #6c757d;
      margin-top: 0.18rem;
    }