/* Visit Counter Pro Styles */
.vcp-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 220px;
  margin: 10px auto;
  transition: transform 0.3s ease;
}
.vcp-card:hover { transform: translateY(-3px); }
.vcp-label { font-weight: bold; font-size: 16px; color: #333; }
.vcp-count { font-size: 36px; font-weight: bold; margin-top: 10px; }
.vcp-subtext { font-size: 12px; color: #666; }

/* Circle Style */
.vcp-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
.vcp-circle {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.vcp-circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3;
}
.vcp-circle-bar {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  animation: vcp-progress 1.5s ease-out forwards;
}
.vcp-circle-text {
  font-size: 8px;
  fill: #333;
  text-anchor: middle;
  transform: rotate(90deg);
}
.vcp-circle-label {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}
@keyframes vcp-progress {
  from { stroke-dasharray: 0 100; }
  to { stroke-dasharray: 100 100; }
}
