@charset "utf-8";
/* Nawa WP — Mechanic Statistic Counter v4.0.6
   Theme: Default (white background, black text)
*/

#mvcwid {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 14px;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease-in-out;
}

#mvcwid:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#mvccount {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

#mvccount img.mvc-digit {
  height: 26px;
  width: auto;
  image-rendering: crisp-edges;
}

.mvc-stats-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mvc-stat-item {
  flex: 1 1 45%;
  min-width: 140px;
  background: #fafafa;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  color: #333;
  transition: all 0.2s ease-in-out;
}

.mvc-stat-item strong {
  color: #111;
}

.mvc-stat-item:hover {
  background: #f3f3f3;
  transform: translateY(-1px);
  border-color: #dcdcdc;
}

#mvcip,
#mvcserver {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
  opacity: 0.85;
  border-top: 1px dashed #d0d0c0;
  padding-top: 6px;
  color: #444;
}

#mvcserver {
  margin-bottom: 4px;
}

/* ---------- responsive adjustments ---------- */
@media (max-width: 640px) {
  #mvcwid {
    max-width: 100%;
    padding: 10px;
  }
  .mvc-stat-item {
    flex: 1 1 100%;
    font-size: 13px;
  }
  #mvccount img.mvc-digit {
    height: 22px;
  }
}

