.print-button {
	margin-right: 10px; /* Adds 10 pixels of space to the right of the left button */
  background-color: #2167d9;
  color: white;
  padding: 5px 5px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.print-button:hover {
  background-color: #B8860B;
}

.print-button:active {
  background-color: #003d80;
}

.prev-button {
  background-color: #7a21d9;
  color: white;
  padding: 5px 5px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.prev-button:hover {
  background-color: #B8860B;
}

.prev-button:active {
  background-color: #9d67d6;
}

