/* counter.css - Visitor counter widget styles */
.visitor-counter {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 100%;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(33,33,33,0.08);
  padding: 10px;
  color: #222;
  border: 1px solid rgba(34,34,34,0.04);
}

/* Header */
.visitor-counter .vc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.visitor-counter .vc-title {
  display: flex;
  gap: 10px;
  align-items: center;
}
.visitor-counter .vc-title h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: #fff;
}
.visitor-counter .vc-badge {
  background: #f1f6ff;
  color: #0a58ca;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(10,88,202,0.08);
}

/* Grid for values */
.visitor-counter .vc-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr ;
  margin-bottom: 0;
}

/* Each stat cell */
.visitor-counter .vc-cell {
  background: linear-gradient(180deg, #ffffff, #fcfdff);
  border-radius: 8px;
  padding: 0px;
  text-align: center;
  border: 1px solid rgba(34,34,34,0.03);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: default;
}
.visitor-counter .vc-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30,30,30,0.06);
}
.visitor-counter .vc-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}
.visitor-counter .vc-number {
  font-weight: 700;
  font-size: 20px;
  color: #111;
  letter-spacing: 0.6px;
}

/* Footer / total */
.visitor-counter .vc-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: 6px;
}
.visitor-counter .vc-total {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Small help text */
.visitor-counter .vc-meta {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

/* Responsive */
@media (max-width:420px) {
  .visitor-counter { max-width: 100%; padding: 12px; }
  .visitor-counter .vc-grid { grid-template-columns: 1fr 1fr; gap:8px; }
  .visitor-counter .vc-number { font-size: 18px; }
}
