.stats-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Dikey ortalama */
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 130px; /* İsteğe bağlı: sabit yükseklik ver */
}

.stat-card h4 {
  font-size: 16px;
  color: #555;
}

.stat-card p {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.percentage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-progress {
  width: 100px;
  height: 100px;
  position: relative;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dasharray 0.6s ease;
}

.circle-progress.increase .circle {
  stroke: #4CAF50; 
}

.circle-progress.decrease .circle {
  stroke: #E53935;
}

.percentage-text {
  font-size: 8px;
  text-anchor: middle;
  fill: #333;
}
