.ppwix-menu-buttons {
  display: block;
}

.ppwix-menu-buttons a.ppwix-menu-button {
  display: block;
  width: 100%;
  text-decoration: none;
  background: #df7d50;
  color: #ffffff;
  padding: 12px 16px;
  margin: 0 0 10px 0; /* 10px gap */
  line-height: 1.2;
  text-align: center;
}

/* Active page button: yellow background, black text */
.ppwix-menu-buttons a.ppwix-menu-button.is-active {
  background: #ffd400; /* strong yellow */
  color: #000000;
}


.ppwix-menu-buttons a.ppwix-menu-button:last-child {
  margin-bottom: 0;
}

/* Respect prefers-reduced-motion (no animation here, but future-proof) */
@media (prefers-reduced-motion: reduce) {
  .ppwix-menu-buttons * { transition: none !important; }
}

