body {
  margin: 0;
  font-family: Arial, sans-serif;
}

h1, h2, h3 {
  font-family: Georgia, serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  background-color: #343a40;
  color: white;
  padding: 10px;
}

.navbar-brand {
  font-size: 24px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-right: 20px;
}

.navbar li {
  margin-left: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

footer {
  background-color: #343a40;
  color: white;
  height: 30px;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
}

/* Style for footer link */
footer a {
  color: white;
}

footer p {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: smaller;
}

.form-group {
  display: flex;
  justify-content: center; /* Add 'justify-content' property */
  align-items: center;
  margin-bottom: 10px;
}

.form-group label {
  margin-right: 10px; /* Add margin-right to create spacing between label and slider */
}

.centered-input {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

#passwords-container {
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #ccc;
  background-color: #f2f2f2;
  text-align: center;
  word-wrap: break-word;
}

#passwords-container h2 {
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.password {
  display: inline-block;
  margin: 10px;
  font-size: 20px;
  font-family: monospace;
  word-break: break-all;
}

.password-div {
  margin-bottom: 10px;
  font-size: 1.2em;
  font-family: monospace;
}

#generate-btn {
  display: block;
  margin: 10px auto;
  font-size: 1em;
  padding: 8px 16px;
}

