.pwgen-output {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pwgen-output input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: "Courier New", monospace;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #e0e6ed;
  outline: none;
}

.pwgen-output input:focus {
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
}

.pwgen-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pwgen-slider label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e0e6ed;
}

.pwgen-slider input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
}

.pwgen-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
}

.pwgen-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  border: none;
}

.pwgen-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pwgen-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #e0e6ed;
  user-select: none;
}

.pwgen-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.pwgen-strength {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pwgen-strength-label {
  margin-bottom: 0.5rem;
  color: #e0e6ed;
}

.pwgen-strength-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.pwgen-strength-bar div {
  height: 100%;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
  border-radius: 4px;
}
