/* Style global */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .menu {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
  }
  
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  .settings-menu {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
  }
  
  .settings-menu input {
    margin: 5px 0;
    padding: 5px;
    width: 100%;
    border-radius: 4px;
  }
  
  .settings-menu button {
    background-color: #ff4c4c;
    margin-top: 10px;
    width: 100%;
  }
  
  .notepad-container {
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px; /* <-- Ajouté */
  }
  
  
  textarea {
    width: 100%;
    height: 100%;
    font-size: 16px;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    resize: none;
    box-sizing: border-box;
  }
/* Style spécifique pour le bouton télécharger */
#downloadBtn {
    background-color: #28a745;
  }
  
  #downloadBtn:hover {
    background-color: #218838;
  }
  #printBtn {
    background-color: #ffc107;
  }
  
  #printBtn:hover {
    background-color: #e0a800;
  }
  @media print {
    body * {
      visibility: hidden; /* Cache tout sauf le texte */
    }
    #notepad, #notepad * {
      visibility: visible;
    }
    #notepad {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      border: none;
    }
  }
  @page {
    margin: 0;
  }
  #shareTextBtn {
    background-color: #17a2b8;
  }
  
  #shareTextBtn:hover {
    background-color: #138496;
  }
        