#popup-content {
  display: none; /* Hide by default */
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
}

#popup-content h2 {
  font-size: 1.2rem;
}

#popup-content p {
  font-size: 0.9rem;
  word-wrap: break-word;
}

#popup-content #instagram-url {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

#popup-content button {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  font-size: 0.9rem;
}

#home-button, #product-page-button, #copy-button {
    background-color: transparent !important;
    border: 1px solid #000 !important; /* Change border color to black for better visibility */
    padding: 0.5rem !important; /* Add padding to make the border more apparent */
    color: #000 !important; /* Ensure text color is also visible */
}