body {
    background-color: #1f1f1f; /* Fond sombre */
    color: #ffffff; /* Texte blanc */
    font-family: Arial, sans-serif;
  }
  
  h1 {
    color: #00ff00; /* Vert fluo */
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  button {
    margin:10px;
    background-color: #00ff00; /* Vert fluo */
    color: #535353; /* Texte blanc */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #00cc00; /* Vert légèrement assombri au survol */
  }
  
  #copyMessage {
    color: #00ff00; /* Vert fluo */
    margin-top: 10px;
  }
  