/* Your custom styles go here (if any) */
.btn-margin {
    margin-right: 5px;
  }

  /* Set the pre element to occupy the entire width */
  #passwordsDisplay {
    width: 100%;
    overflow-x: auto;
    text-align: left;
    /* Center the content inside the pre element */
  }

  /* Custom centering for buttons */
  .center-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .password-generator-container {
    max-width: 700px;
    margin: auto;
  }

  /* Custom centering for the generated passwords container */
  .passwords-container {
    width: 100%;
    margin: 0 auto;
    /* Center the container */
  }

  .small-font {
    font-size: 12px;
    color: #aaaaaa;
    /* Light gray color */
    margin-top: -10px;
    /* Adjust the margin to make it closer to the text above it */
  }

  /* Custom footer styles */
  footer {
    text-align: center;
    margin-top: 5px;
  }

  /* Dark mode styles */
  @media (prefers-color-scheme: dark) {
    body {
      background-color: #333;
      color: #aaa9a9;
    }

    .password-generator-container {
      background-color: #444;
      border-radius: 5px;
      padding: 10px;
    }

    .btn-primary {
      background-color: #007bff;
      border-color: #007bff;
    }

    .form-range::-webkit-slider-runnable-track {
      background: #aaa9a9;
    }

    .form-check-input:not(:checked)[type="checkbox"] {
      background-color: #aaa9a9;
      border-color: #444;
    }
  }