/* css styles */

/* Add print button to all pages */
.print-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.print-button:hover {
  background-color: #0b5ed7;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.print-button i {
  pointer-events: none;
}

/* Hide print button when printing */
@media print {
  .print-button {
    display: none;
  }
}