/* Estilos base para Pen Battle. Adaptado del plugin Qué Dibujo Advanced para mantener una apariencia coherente. */
#pen-battle-tool {
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  font-family: "Bricolage Grotesque", "Public Sans", sans-serif;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease-in-out;
}
#pen-battle-tool h1 {
  margin-bottom: 24px;
  font-weight: 600;
  color: #111;
}

#pen-battle-tool .pb-output {
  margin: 24px 0;
  font-size: 1.5rem;
  color: var(--primary);
  min-height: 40px;
}
#pen-battle-tool button {
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom:12px;
}
#pen-battle-tool button:hover {
  background: var(--primary-hover);
}
#pen-battle-tool .pb-share-icons {
  margin-top: 32px;
}
#pen-battle-tool .pb-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  font-size: 18px;
  color: var(--primary);
  background: #f1f1f1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
#pen-battle-tool .pb-share-icon:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: scale(1.1);
}
#pen-battle-tool .pb-email-desc {
  font-size: 0.85em;
  color: #636e72;
  margin-bottom: 4px;
}
#pen-battle-tool .pb-email-message {
  font-size: 0.9em;
  color: #2d3436;
  margin-top: 6px;
}
#pen-battle-tool ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  margin: 20px auto;
  max-width: 640px;
}
#pen-battle-tool ul li {
  margin-bottom: 6px;
  color: #444;
}
.pb-highlight {
  background: rgba(0, 255, 150, 0.08);
  border-radius: 12px;
  padding: 15px;
  transition: 0.4s ease-in-out;
  margin-bottom: 1rem;
}
.pb-email-message {
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 8px;
}
/* Temporizador grande */
#pb_timer {
  font-size: 4rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary);
}