.password-display {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
    word-break: break-all;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.password-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

button {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    border: none;
    background: #3b82f6;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

button:active {
    transform: scale(0.97);
}

.copy-btn {
    background: #10b981;
}

.copy-btn:active {
    background: #059669;
}

.option-group {
    margin-bottom: 20px;
}

.option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.option-row label {
    font-weight: 500;
    color: #334155;
}

input[type="range"] {
    flex: 1;
    min-width: 150px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    cursor: pointer;
}

.strength {
    margin-top: 16px;
    padding: 8px;
    text-align: center;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
}

.strength-weak { background: #fee2e2; color: #991b1b; }
.strength-fair { background: #fed7aa; color: #9a3412; }
.strength-good { background: #fef08a; color: #854d0e; }
.strength-strong { background: #d1fae5; color: #065f46; }

@media (max-width: 480px) {
    .password-display { font-size: 1rem; }
    .option-row { flex-direction: column; align-items: stretch; }
    input[type="range"] { width: 100%; }
}