.print-container {
  text-align: center;
  margin-top: 20px; /* Ajustez la marge selon vos besoins */
}

.print-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0px;
}

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


/* L'en-tête ne s'affiche pas à l'écran */
.print-header {
  display: none;
}

@media print {
  .print-header {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .print-logo {
    max-width: 120px;
    margin-bottom: 10px;
  }

  .print-address {
    font-size: 14px;
    line-height: 1.4;
  }

  .print-button, .print-container {
    display: none !important;
  }
}



