/* Custom note paragraph */
.note {
  background: #fff8cc; /* light yellow background */
  border-left: 4px solid #ffd54d; /* yellow left border */
  padding: 0.75rem 1rem; /* comfortable reading padding */
  margin: 1rem 0; /* space around the note */
  border-radius: 6px; /* soften edges */
}

.store {
  display: inline-block; /* make it look like a button within text flow */
  background: #fff; /* soft yellow button-like background */
  color: #000; /* readable dark golden text */
  border: 1px solid #000; /* yellow border all around */
  border-radius: 9999px; /* pill/roundrect appearance */
  padding: 0.5rem 0.9rem; /* button-like padding */
  margin: 0.5rem 0; /* vertical spacing */
  font-weight: 600; /* emphasize like a button */
  line-height: 1.2; /* compact button feel */
  text-decoration: none; /* clean look if links inside */
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04); /* subtle elevation */
}

.store a {
    text-decoration: none;
    color: #000;
}

.store a:hover {
    color: #000;
}
