/* Dashboard KPI Cards */
.kpi-card {
  border-radius: 14px;
  transition: all 0.25s ease;
}

  .kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

.kpi-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .kpi-icon img {
    max-height: 32px;
  }
