/* ==========================================
   PASSWORD GENERATOR
========================================== */

.password-generator-page .tool-page-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.password-generator-page .tool-page-description {
    font-size: 1.075rem;
    color: var(--gray-color, #6b7280);
    max-width: 780px;
    margin: 0 auto;
}

/* ---------- Output row ---------- */
.pg-output {
    display: flex;
    gap: 8px;
}

.pg-output-field {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    background: #f8f9fa;
    word-break: break-all;
}

.pg-output-field:focus {
    background: #fff;
}

.pg-output .btn {
    flex-shrink: 0;
    min-width: 48px;
}

/* ---------- Strength meter ---------- */
.pg-strength-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.pg-strength-fill {
    height: 100%;
    width: 0;
    background: #e03131;
    border-radius: 999px;
    transition: width 0.3s ease, background 0.3s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .password-generator-page .tool-page-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .pg-output-field {
        font-size: 0.95rem;
    }
}
