/* css/style.css */

/* VARIABLES PARA PERSONALIZAR */
:root {
  --vc-font-family: Verdana, sans-serif;
  --vc-bg-color: #ffffff;        /* Fondo del contenedor */
  --vc-item-bg: #f9f9f9;         /* Fondo de cada ítem */
  --vc-item-hover: #f0f0f0;      /* Fondo al pasar el mouse */
  --vc-text-color: #000000;      /* Color de texto */

  /* Borde del contenedor */
  --vc-border-width: 2px;
  --vc-border-style: solid;
  --vc-border-color: #cccccc;

  /* Esquinas y sombra */
  --vc-border-radius: 8px;
  --vc-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tipografía global */
body {
  margin: 0;
  padding: 0;
  font-family: var(--vc-font-family);
}

/* Contenedor principal responsive */
#visit-counter {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: var(--vc-bg-color);
  color: var(--vc-text-color);
  border: var(--vc-border-width) var(--vc-border-style) var(--vc-border-color);
  border-radius: var(--vc-border-radius);
  box-shadow: var(--vc-shadow);
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  box-sizing: border-box;
}

/* Cada país */
.vc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--vc-item-bg);
  border-radius: var(--vc-border-radius);
  transition: background 0.2s;
}
.vc-item:hover {
  background: var(--vc-item-hover);
}

/* Bandera */
.vc-item img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
}

/* Nombre del país */
.vc-country {
  flex: 1;
  font-size: 0.6rem;
  font-weight: 500;
}

/* Contador */
.vc-count {
  font-weight: bold;
  font-size: 0.8rem;
}
