/* Make text links more accessible */
.entry-content a,
p a {
  color: #0056b3;          /* dark blue, high contrast */
  font-weight: 600;        /* make link text stronger */
  text-decoration: underline; /* underline ensures visibility */
}

/* Improve hover state for links */
.entry-content a:hover,
p a:hover {
  color: #222222;          /* darker for hover contrast */
  text-decoration: underline;
}
/* Make slider buttons larger & add spacing */
.roll-button.button-slider {
  padding: 14px 28px;   /* increase button size */
  font-size: 16px;      /* readable text */
  min-width: 120px;     /* ensures width */
  min-height: 48px;     /* ensures height */
  margin: 8px;          /* spacing between buttons */
}