.wc-product-pdf-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #006400; /* Dark green */
  color: #ffffff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin: 10px 0;
  transition: background-color 0.3s ease;
}

.wc-product-pdf-button:hover {
  background-color: #004d00; /* Darker green on hover */
  text-decoration: none;
  color: #ffffff !important;
}

.wc-product-pdf-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 100, 0, 0.5);
  color: #ffffff !important;
}

