/* Réinitialisation des marges par défaut */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  #pdf-viewer {
    width: 100%;
    height: 500px;
    border: 3px solid #d3d3d3;
    overflow: auto;
    margin-bottom: 20px;
    padding: 0;
  }

  .zoom-buttons {
    margin-bottom: 20px;
    text-align: left;
  }

  .zoom-buttons button {
    padding: 12px 18px;
    margin: 5px;
    background-color: #009999;
    color: white;
    border: 2px solid #009999;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .zoom-buttons button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
  }

  .zoom-buttons button:disabled {
    background-color: #d6d6d6;
    border-color: #b0b0b0;
    cursor: not-allowed;
  }

  .zoom-buttons .icon {
    margin-right: 8px;
  }

  .download-link {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
  }

  .download-link:hover {
    background-color: #218838;
  }