.overview-page {
  background-color: #f5f5f5;
  min-height: 100vh;
  padding: 20px;
}

.stat-card {
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.primary-card {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  color: white;
}

.amount-display {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.amount-label {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.trend-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
}

.trend-up {
  color: #4CAF50;
}

.trend-down {
  color: #FF5252;
}

.trend-flat,
.trend-none {
  color: #9E9E9E;
}

.recent-table {
  background: white;
  border-radius: 12px;
}

.status-chip {
  font-weight: 500;
}

@media (max-width: 600px) {
  .amount-display {
    font-size: 2rem;
  }
  
  .overview-page {
    padding: 12px;
  }
}
