.password-display {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid #E5E7EB;
}

.password-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    word-break: break-all;
}

.copy-btn-mini {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn-mini:hover {
    transform: scale(1.05);
}

.strength-indicator {
    margin-bottom: 2rem;
}

.strength-bar {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.strength-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-row {
    display: flex;
    align-items: center;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

@media (max-width: 768px) {
    .password-text {
        font-size: 1.2rem;
    }
}
