/* Styles pour les boutons */
.return-button {
  display: block;
  margin: 20px auto;
  padding: 12px 24px;
  background: linear-gradient(145deg, #2D6A4F, #1B4332);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  box-shadow: 
    0 4px 8px rgba(27, 67, 50, 0.3),
    0 2px 4px rgba(27, 67, 50, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}

.return-button:hover {
  background: linear-gradient(145deg, #D4AF37, #B8941F);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 12px rgba(212, 175, 55, 0.4),
    0 4px 8px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.return-button:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 4px rgba(27, 67, 50, 0.3),
    0 1px 2px rgba(27, 67, 50, 0.2),
    inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

/* Styles pour les boutons d'impression */
.print-button {
  background: linear-gradient(145deg, #D4AF37, #B8941F);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 
    0 3px 6px rgba(212, 175, 55, 0.3),
    0 1px 3px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  transform: perspective(1px) translateZ(0);
  font-family: 'Inter', sans-serif;
}

.print-button:hover {
  background: linear-gradient(145deg, #2D6A4F, #1B4332);
  transform: translateY(-1px);
  box-shadow: 
    0 4px 8px rgba(45, 106, 79, 0.4),
    0 2px 4px rgba(45, 106, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.print-button:active {
  transform: translateY(0);
  box-shadow: 
    0 1px 2px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(0, 0, 0, 0.1);
}
