/* Password Generator — Tool Specific Styles */

.pwd-output {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  min-height: 64px;
}
.pwd-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  word-break: break-all;
  flex: 1;
  font-family: 'Courier New', monospace;
}
.pwd-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Strength */
.strength-wrap { margin-bottom: 22px; }
.strength-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--t3);
  font-weight: 500;
}
.strength-text { font-weight: 700; }
.strength-bar  { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.strength-fill { height: 100%; border-radius: 2px; width: 0; transition: width 0.4s ease, background 0.4s ease; }

/* Slider */
.slider-group { margin-bottom: 20px; }
.slider-row   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13px; font-weight: 600; color: var(--text); }
.len-val      { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
input[type=range] { width: 100%; accent-color: var(--blue); cursor: pointer; }

/* Options */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.opt-item     { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: border-color 0.2s; }
.opt-item:hover { border-color: var(--bh); }
.opt-item input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.opt-label    { font-size: 13px; font-weight: 500; color: var(--t2); cursor: pointer; }

@media(max-width: 480px) {
  .options-grid { grid-template-columns: 1fr; }
  .pwd-text { font-size: 14px; }
}
