/* style.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
  }
  
  .container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  
  h1 {
    font-size: 24px;
    color: #333;
  }
  
  .generator-options label {
    display: block;
    margin: 10px 0;
  }
  
  #passwordDisplay {
    font-size: 18px;
    margin: 20px 0;
    word-wrap: break-word;
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 4px;
  }
  
  #strengthDisplay {
    font-weight: bold;
  }
  
  /* style.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
  }
  
  .container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  
  h1 {
    font-size: 24px;
    color: #333;
  }
  
  .generator-options label {
    display: block;
    margin: 10px 0;
  }
  
  #passwordDisplay {
    font-size: 18px;
    margin: 20px 0;
    padding: 10px;
    border-radius: 4px;
    background-color: #e7e7e7;
    cursor: pointer;
    user-select: none;
  }
  
  #passwordDisplay:hover {
    background-color: #d3d3d3;
  }
  
  #qrCodeSection {
    margin-top: 20px;
  }

  #qrCode img {
    margin: 0 auto;
  }
  