/* 결과 비밀번호 */
.pw-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
}
.pw-text {
  flex: 1;
  font-family: 'Consolas', 'D2Coding', monospace;
  font-size: 18px;
  letter-spacing: 1px;
  color: #1a1a1a;
  word-break: break-all;
}
.btn-copy {
  background: #0078d4;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

/* 강도 표시 */
.strength-bar-wrap {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strength-bar {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.strength-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s, background 0.3s;
  width: 0%;
}
.strength-label {
  font-size: 12px;
  font-weight: 600;
  min-width: 36px;
  text-align: right;
}

/* 슬라이더 */
.slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-row label { white-space: nowrap; }
.slider-row input[type=range] { flex: 1; accent-color: #0078d4; }
.slider-val {
  font-weight: 700;
  color: #0078d4;
  width: 28px;
  text-align: right;
}

/* 체크박스 */

.check-sample {
  color: #999;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  margin-left: auto;
}

/* 개수 */

/* 버튼 */
.btn-generate {
  width: 100%;
  padding: 12px;
  background: #0078d4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

/* 목록 */
#pw-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pw-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px 12px;
}
.pw-list-item .pw-text {
  font-size: 14px;
}
.pw-list-item .btn-copy {
  padding: 6px 12px;
  font-size: 12px;
}
